@import url(https://fonts.googleapis.com/css2?family=PT+Sans:wght@400;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Alumni+Sans:wght@400;500;600&display=swap);
.en-comics {
  position: relative;
  z-index: 1;
}
.en-comics__tabs {
  display: flex;
  gap: 2rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.en-comics__container {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-height: 100vh;
  padding-top: 50px;
  padding-bottom: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.en-comics__container.--zoom {
  overflow-y: auto;
}
.en-comics__tab {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.en-comics__tab:hover,
.en-comics__tab:focus,
.en-comics__tab.--active {
  color: #FFB84F;
  transition: color 0.2s ease;
}
.en-comics__tab:active {
  opacity: 0.7;
}
.en-comics__list {
  padding-top: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.en-comics__item {
  cursor: pointer;
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: transform 0.15s ease-in-out;
  min-width: 20rem;
  flex: 1;
}
.en-comics__item:hover,
.en-comics__item:focus {
  transform: translateY(-5px);
}
.en-comics__item:active {
  transform: translateY(-3px);
}
.en-comics__item::before {
  content: '';
  height: 8rem;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #122126 0%, rgba(18, 33, 38, 0.95) 14.06%, rgba(18, 33, 38, 0.65) 37.5%, rgba(18, 33, 38, 0.380208) 63.02%, rgba(18, 33, 38, 0.05) 86.98%, rgba(18, 33, 38, 0) 100%);
}
.en-comics__item-content {
  height: 100%;
  width: 100%;
  padding: 1rem 1.5rem calc(100% * 9 / 16);
}
.en-comics__item-title {
  text-transform: uppercase;
}
.en-comics__item-img {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.en-comics__loadmore {
  height: 8rem;
  align-items: center;
  display: flex;
  justify-content: center;
}
.en-comics__modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background-color: rgba(18, 33, 38, 0.9);
  text-align: center;
  animation: dropdown 0.3s ease-out;
}
.en-comics__modal-title {
  text-transform: uppercase;
  padding-top: 1rem;
}
.en-comics__modal-img {
  margin: 0 auto;
  max-width: 100%;
  max-height: calc(100vh - 150px);
  cursor: zoom-in;
}
.en-comics__modal-img.--zoom {
  cursor: zoom-out;
  max-height: unset;
}
.en-comics__modal-prev,
.en-comics__modal-next,
.en-comics__modal-close {
  cursor: pointer;
  position: fixed;
  height: 3rem;
  width: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.8;
  z-index: 100;
}
.en-comics__modal-prev:hover,
.en-comics__modal-next:hover,
.en-comics__modal-close:hover,
.en-comics__modal-prev:focus,
.en-comics__modal-next:focus,
.en-comics__modal-close:focus {
  transition: all 0.2s ease;
  border-color: #FFB84F;
  opacity: 1;
}
.en-comics__modal-prev:active,
.en-comics__modal-next:active,
.en-comics__modal-close:active {
  opacity: 0.7;
}
.en-comics__modal-prev {
  left: 1rem;
  top: calc(50vh - 1.5rem);
  background-image: url(/modern-3/4425d49597c0feaeb3eb.svg);
}
.en-comics__modal-next {
  right: 1rem;
  top: calc(50vh - 1.5rem);
  background-image: url(/modern-3/21b6857e495bdfb8a7c3.svg);
}
.en-comics__modal-close {
  right: 1rem;
  top: 1rem;
  background-image: url(/modern-3/38bad7151e30eb57a070.svg);
}

.gj-gallery-viewer {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 15000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s ease-in-out;
}
.gj-gallery-viewer.--hidden {
  opacity: 0;
}
.gj-gallery-viewer__controls {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  padding: 10px 10px;
  display: flex;
  background-color: rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  font-size: 14px;
  color: white;
  line-height: 30px;
  font-family: Roboto, sans-serif;
  z-index: 10;
}
.gj-gallery-viewer__controls-icon {
  width: 30px;
  height: 30px;
  display: block;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-color 0.2s ease-in-out;
  cursor: pointer;
}
.gj-gallery-viewer__controls-icon.--fullscreen {
  background-image: url(/modern-3/2badfd93ad0558210184.png);
  background-size: auto 20px;
}
.gj-gallery-viewer__controls-icon.--zoom {
  background-image: url(/modern-3/119d50cfd0b65d762966.png);
  background-size: auto 20px;
}
.gj-gallery-viewer__controls-icon.--zoomout {
  background-image: url(/modern-3/b1beff00fdf7a3f7863a.png);
  background-size: auto 20px;
}
.gj-gallery-viewer__controls-icon.--download {
  background-image: url(/modern-3/6978ef3aaa97446d4bc3.png);
  background-size: auto 26px;
}
.gj-gallery-viewer__controls-icon.--close {
  text-align: center;
  font-size: 22px;
}
.gj-gallery-viewer__controls-icon:hover {
  background-color: rgba(255, 255, 255, 0.3);
}
.gj-gallery-viewer__controls-space {
  flex: 1;
}
.gj-gallery-viewer__content.--zoomedX {
  width: 100%;
}
.gj-gallery-viewer__content.--zoomedY {
  height: 100%;
}
.gj-gallery-viewer__main {
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  text-align: center;
}
.gj-gallery-viewer__main.--zoomedX {
  width: 100%;
  overflow-x: scroll;
}
.gj-gallery-viewer__main.--zoomedY {
  height: 100%;
  overflow-y: scroll;
}
.gj-gallery-viewer__main img {
  opacity: 0.01;
  transition: opacity 0.2s ease-in-out;
  width: 80%;
  height: auto;
}
@media screen and (max-width: 950px) {
  .gj-gallery-viewer__main img {
    width: 100%;
  }
}
.gj-gallery-viewer__main img.--zoomable {
  cursor: zoom-in;
}
.gj-gallery-viewer__main img.--zoomed {
  cursor: zoom-out;
}
.gj-gallery-viewer__main img.--loaded {
  opacity: 1;
}
.gj-gallery-viewer__prev,
.gj-gallery-viewer__next {
  color: white;
  position: absolute;
  top: 0px;
  width: 10%;
  height: 100%;
  min-width: 32px;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease-out;
  background-color: rgba(0, 0, 0, 0.2);
  background-image: url(/modern-3/ba89d222d5da996c7c0c.png);
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 9;
}
.gj-gallery-viewer__prev:hover,
.gj-gallery-viewer__next:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.gj-gallery-viewer__prev {
  left: 0px;
  transform: scaleX(-1);
}
.gj-gallery-viewer__next {
  right: 0px;
}
.gj-gallery-viewer__loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/**
 * Swiper 7.2.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: October 27, 2021
 */

 @font-face{font-family:swiper-icons;src:url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");font-weight:400;font-style:normal}:root{--swiper-theme-color:#007aff}.swiper{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-pointer-events{touch-action:pan-y}.swiper-pointer-events.swiper-vertical{touch-action:pan-x}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-autoheight,.swiper-autoheight .swiper-slide{height:auto}.swiper-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-3d,.swiper-3d.swiper-css-mode .swiper-wrapper{perspective:1200px}.swiper-3d .swiper-cube-shadow,.swiper-3d .swiper-slide,.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top,.swiper-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-3d .swiper-slide-shadow,.swiper-3d .swiper-slide-shadow-bottom,.swiper-3d .swiper-slide-shadow-left,.swiper-3d .swiper-slide-shadow-right,.swiper-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-3d .swiper-slide-shadow{background:rgba(0,0,0,.15)}.swiper-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-horizontal.swiper-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-vertical.swiper-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}.swiper-centered>.swiper-wrapper::before{content:'';flex-shrink:0;order:9999}.swiper-centered.swiper-horizontal>.swiper-wrapper>.swiper-slide:first-child{margin-inline-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-horizontal>.swiper-wrapper::before{height:100%;min-height:1px;width:var(--swiper-centered-offset-after)}.swiper-centered.swiper-vertical>.swiper-wrapper>.swiper-slide:first-child{margin-block-start:var(--swiper-centered-offset-before)}.swiper-centered.swiper-vertical>.swiper-wrapper::before{width:100%;min-width:1px;height:var(--swiper-centered-offset-after)}.swiper-centered>.swiper-wrapper>.swiper-slide{scroll-snap-align:center center}
.gj-gallery {
  margin-right: -10px;
}
.gj-gallery__view-item {
  display: block;
}
.gj-gallery__view-item img {
  width: 100%;
}
.gj-gallery__thumbs {
  display: flex;
  margin: 0px -10px;
}
.gj-gallery__thumb-list-item {
  flex: 1;
  margin: 10px;
  opacity: 0.4;
}
.gj-gallery__thumb-list-item.--active {
  opacity: 1;
}
.gj-gallery__thumb-item {
  display: block;
}
.gj-gallery__thumb-item img {
  width: 100%;
}
.gj-gallery__hidden {
  display: none;
}
.gj-gallery__thumbs .swiper-slide-active {
  opacity: 1;
}

.en-replay-viewer {
  background-color: #344348;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-family: 'Fira Sans Condensed', sans-serif;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer {
    font-size: 1.2rem;
  }
}
.en-replay-viewer__tabs {
  display: none;
  background-color: rgba(13, 25, 30, 0.33);
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__tabs {
    display: flex;
  }
}
.en-replay-viewer__tab {
  padding: 1rem;
  text-align: center;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
  flex: 0.5;
}
.en-replay-viewer__tab:not(.--active) {
  cursor: pointer;
  background-color: rgba(13, 25, 30, 0.33);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  transition: all 0.1s ease;
}
.en-replay-viewer__tab:not(.--active):hover,
.en-replay-viewer__tab:not(.--active):focus {
  background-color: rgba(255, 255, 255, 0.05);
}
.en-replay-viewer__content {
  background-color: rgba(13, 25, 30, 0.33);
  display: flex;
  min-height: calc(55vh + 3rem);
}
.en-replay-viewer__text {
  word-break: break-word;
}
.en-replay-viewer__info-block {
  flex: 0.3;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__info-block {
    flex: 1;
    display: none;
  }
  .en-replay-viewer__info-block.--active {
    display: flex;
  }
}
.en-replay-viewer__players {
  position: relative;
  background-color: rgba(13, 25, 30, 0.33);
  flex: 0.7;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__players {
    flex: 1;
    background: none;
    display: none;
  }
  .en-replay-viewer__players.--active {
    display: block;
  }
}
.en-replay-viewer__complain {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  background-color: rgba(13, 25, 30, 0.98);
  padding: 3rem;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__complain {
    padding: 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__complain {
    padding: 1rem;
  }
}
.en-replay-viewer__complain-close {
  cursor: pointer;
}
.en-replay-viewer__complain-close:hover {
  color: #FFB84F;
}
.en-replay-viewer__complain-close:active {
  opacity: 0.8;
}
.en-replay-viewer__complain-button {
  border-left: none;
  border-right: none;
  height: 3rem !important;
  font-size: 1.2rem !important;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1) !important;
  min-width: auto !important;
}
.en-replay-viewer__complain-button.--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.en-replay-viewer__complain-footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 2rem;
}
.en-replay-viewer__scroll {
  display: flex;
  overflow-y: scroll;
  padding: 0 3rem;
  max-height: 55vh;
}
@media only screen and (max-width: 1024px) {
  .en-replay-viewer__scroll {
    padding: 0 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__scroll {
    padding: 0;
  }
}
.en-replay-viewer__scroll-wrapper {
  position: relative;
  padding-right: 3px;
}
.en-replay-viewer__scroll-wrapper::before,
.en-replay-viewer__scroll-wrapper::after {
  content: '';
  height: 1.5rem;
  position: absolute;
  left: 0;
  right: 0;
}
.en-replay-viewer__scroll-wrapper::after {
  bottom: 0;
  background: linear-gradient(0, #1E2C31 0%, rgba(30, 44, 49, 0) 100%);
}
.en-replay-viewer__scroll-wrapper::before {
  top: 0;
  background: linear-gradient(180deg, #1E2C31 0%, rgba(30, 44, 49, 0) 100%);
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__scroll-wrapper::after {
    background: linear-gradient(0, #27353a 0%, rgba(30, 44, 49, 0) 100%);
  }
  .en-replay-viewer__scroll-wrapper::before {
    background: linear-gradient(180deg, #27353a 0%, rgba(30, 44, 49, 0) 100%);
  }
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__scroll-wrapper::before {
    background: linear-gradient(180deg, #1E2C31 0%, rgba(30, 44, 49, 0) 100%);
  }
}
.en-replay-viewer__list {
  font-family: 'PT Serif', serif;
  line-height: 160%;
  height: 100%;
  padding: 1rem 2rem 2rem;
  flex: 0.5;
}
.en-replay-viewer__list .--self {
  color: #D4B77F;
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__list {
    flex: 1;
  }
  .en-replay-viewer__list:not(.--active) {
    display: none;
  }
}
.en-replay-viewer__list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
}
.en-replay-viewer__list-complain {
  cursor: pointer;
  height: 1.5rem;
  width: 1.5rem;
  color: #fff;
  opacity: 0.6;
  border-radius: 50%;
  background-color: rgba(13, 25, 30, 0.33);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(/modern-3/9029532038f614a9dcb4.svg);
  transition: opacity 0.2s ease;
}
.en-replay-viewer__list-complain:hover {
  opacity: 1;
}
.en-replay-viewer__list-complain:active {
  opacity: 0.85;
}
.en-replay-viewer__sides {
  display: flex;
  padding: 2rem 3rem 0;
}
@media only screen and (max-width: 1024px) {
  .en-replay-viewer__sides {
    padding: 1rem 2rem 0;
  }
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__sides {
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.en-replay-viewer__side {
  flex: 0.5;
  padding: 1rem 2rem 0;
  min-width: 5rem;
  opacity: 0.4;
  font-weight: 500;
  font-size: 0.9em;
  text-transform: uppercase;
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__side {
    flex: unset;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid transparent;
    opacity: 1;
    transition: all 0.1s ease;
    position: relative;
    bottom: -1px;
  }
  .en-replay-viewer__side:not(.--active) {
    cursor: pointer;
  }
  .en-replay-viewer__side:not(.--active):hover,
  .en-replay-viewer__side:not(.--active):focus {
    color: #FFB84F;
  }
  .en-replay-viewer__side.--active {
    color: #FFB84F;
    border-bottom-color: #FFB84F;
  }
}
.en-replay-viewer__header {
  display: flex;
  padding: 1rem;
  gap: 0.5rem;
  position: relative;
  padding-right: 8rem;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__header {
    padding-right: 5rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__header {
    flex-direction: column;
    justify-content: unset;
    padding-right: unset;
  }
}
.en-replay-viewer__header-block {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.en-replay-viewer__close {
  cursor: pointer;
  font-size: 4rem;
  position: absolute;
  right: 0.7rem;
  top: 0.7rem;
}
.en-replay-viewer__close:hover,
.en-replay-viewer__close:focus {
  color: #FFB84F;
  transition: color 0.2s ease;
}
.en-replay-viewer__close:active {
  opacity: 0.8;
}
.en-replay-viewer__title {
  font-size: 1.3em;
  font-weight: 400;
  padding-left: 0.2rem;
}
.en-replay-viewer__text.--small {
  font-size: 0.9em;
  opacity: 0.7;
}
.en-replay-viewer__icon-text {
  display: flex;
  align-items: center;
}
.en-replay-viewer__icon-text::before {
  content: '';
  height: 1.7rem;
  width: 1.7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  margin-right: 0.3rem;
}
.en-replay-viewer__icon-text.--timer,
.en-replay-viewer__icon-text.--views {
  font-family: 'PT Serif', serif;
}
.en-replay-viewer__icon-text.--timer::before {
  background-image: url(/modern-3/3752b35c972a920a62a2.svg);
}
.en-replay-viewer__icon-text.--player::before {
  background-image: url(/modern-3/3752b35c972a920a62a2.svg);
}
.en-replay-viewer__icon-text.--views::before {
  background-image: url(/modern-3/a7021f19723911dd2c5e.svg);
}
.en-replay-viewer__label {
  opacity: 0.4;
  font-weight: 500;
  font-size: 0.9em;
  line-height: 1rem;
  text-transform: uppercase;
}
.en-replay-viewer__info {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 0.5rem;
}
.en-replay-viewer__download-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.en-replay-viewer__campaign {
  display: flex;
  align-items: center;
  padding: 0.2rem 0;
}
.en-replay-viewer__campaign-icon {
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  font-size: 0.8rem;
  margin-right: 0.4rem;
}
.en-replay-viewer__showmore {
  cursor: pointer;
  opacity: 0.6;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 4px;
  transition: opacity 0.2s ease;
}
.en-replay-viewer__showmore:hover,
.en-replay-viewer__showmore:focus {
  opacity: 0.9;
}
.en-replay-viewer__showmore:active {
  opacity: 1;
}
.en-replay-viewer__footer {
  padding: 1rem;
  display: flex;
  position: relative;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__footer {
    gap: 1rem;
    flex-direction: column;
  }
}
.en-replay-viewer__footer-note {
  padding: 0px 13px 10px 13px;
  margin-top: -5px;
  font-size: 1rem;
  text-align: right;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__footer-note {
    text-align: center;
  }
}
.en-replay-viewer__popover-trigger {
  display: flex;
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
.en-replay-viewer__popover-trigger::before {
  content: '';
  height: 1.8rem;
  width: 1.8rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(/modern-3/2b0faaa39db499cec7cd.svg);
}
.en-replay-viewer__popover-trigger:hover,
.en-replay-viewer__popover-trigger:focus {
  opacity: 1;
}
.en-replay-viewer__popover-trigger:hover + .en-replay-viewer__popover,
.en-replay-viewer__popover-trigger:focus + .en-replay-viewer__popover {
  opacity: 1;
  z-index: 1;
  transform: translateY(0);
}
.en-replay-viewer__popover {
  opacity: 0;
  transform: translateY(-0.5rem);
  z-index: -1;
  background-color: #515E62;
  display: flex;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  position: absolute;
  bottom: 5rem;
  left: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__popover {
    bottom: 160px;
    left: 0;
    right: 0;
  }
}
.en-replay-viewer__popover::after {
  content: '';
  position: absolute;
  display: block;
  width: 0;
  z-index: 1;
  border-style: solid;
  border-color: #515e62 transparent;
  border-width: 10px 10px 0;
  bottom: -10px;
  left: 2rem;
  margin-left: -10px;
}
@media only screen and (max-width: 760px) {
  .en-replay-viewer__popover::after {
    margin: auto;
    left: 0;
    right: 0;
  }
}
.en-replay-viewer__popover-list {
  padding-left: 1rem;
  margin: 0;
}
.en-replay-viewer__hint {
  font-family: 'PT Serif', serif;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
}
@media only screen and (max-width: 500px) {
  .en-replay-viewer__hint {
    max-width: unset;
  }
}
.en-replay-viewer__hint::before {
  content: '';
  height: 1.8rem;
  width: 1.8rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(/modern-3/7ff1637e2d0eb0964d9c.svg);
  margin-right: 0.8rem;
}
.en-replay-viewer__button {
  cursor: pointer;
  font-family: 'PT Serif', serif;
  padding: 0.3rem 0;
  display: flex;
  align-items: center;
  color: #fff;
  transition: opacity 0.2s ease;
}
.en-replay-viewer__button::before {
  content: '';
  height: 1.7rem;
  width: 1.7rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  margin-right: 0.3rem;
}
.en-replay-viewer__button.--download::before {
  background-image: url(/modern-3/831f78d57e47b5c727aa.svg);
  background-size: 70%;
}
.en-replay-viewer__button.--link::before {
  background-image: url(/modern-3/51ab680a3857572b9de4.svg);
}
.en-replay-viewer__button:hover,
.en-replay-viewer__button:focus {
  color: #FFB84F;
  text-decoration: underline;
}
.en-replay-viewer__button:active {
  opacity: 0.8;
}
.en-replay-viewer__watch {
  flex-shrink: 0;
  height: 3rem !important;
  font-size: 1.2rem !important;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.1) !important;
}
.en-replay-viewer__watch.--disabled {
  opacity: 0.5;
  pointer-events: none;
}
.en-replay-viewer__alert {
  text-align: center;
  font-family: 'PT Serif', serif;
  padding: 0.3rem 1rem;
}
.en-replay-viewer__alert.--danger {
  background-color: #E36150;
}
.en-replay-viewer__alert.--success {
  background-color: #51948C;
}
@media (pointer: fine) {
  .en-replay-viewer .scrollfix::-webkit-scrollbar {
    width: 4px !important;
  }
  .en-replay-viewer .scrollfix::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .en-replay-viewer .scrollfix::-webkit-scrollbar-track:hover {
    background: rgba(0, 0, 0, 0.1);
  }
  .en-replay-viewer .scrollfix::-webkit-scrollbar-thumb {
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.2);
    -webkit-transition: all 0.2s ease-in;
    transition: all 0.2s ease-in;
  }
  .en-replay-viewer .scrollfix::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.4);
  }
  .en-replay-viewer .scrollfix::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(255, 255, 255, 0.05);
  }
}

.en-replays__filters {
  display: flex;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}
.en-replays__filter {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  min-width: 10rem;
  max-width: 14rem;
  flex: 1;
}
.en-replays__input {
  font-size: 1.2rem;
  position: relative;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none;
  height: 3rem;
  background-color: rgba(255, 255, 255, 0.1);
  color: #e5e5e5;
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 0 1rem;
  width: 100%;
  outline: none;
}
.en-replays__input.--select {
  background-image: url(/modern-3/f3055af6ad488760e562.png);
  background-size: 18px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
}
.en-replays__input.--select option {
  color: initial;
}
.en-replays__input.--textarea {
  height: initial;
  padding: 15px;
  min-height: 100px;
  resize: vertical;
}
.en-replays__label {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.2rem;
}
.en-replays__checkbox {
  cursor: pointer;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative;
  flex-shrink: 0;
  outline: none;
  height: 2rem;
  width: 2rem;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0;
}
.en-replays__checkbox::before {
  content: '';
  background-image: url(/modern-3/227bc0e74404d5ca15dc.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 0.2rem;
  top: 0.2rem;
  height: 1.6rem;
  width: 1.6rem;
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
.en-replays__checkbox:checked::before {
  opacity: 1;
}
.en-replay {
  cursor: pointer;
  font-family: 'Fira Sans Condensed', sans-serif;
  background-color: #344348;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 0.6rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.en-replay:hover,
.en-replay:focus {
  background-color: #4a5a5f;
  transition: background-color 0.2s ease;
}
.en-replay__section {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  width: 12rem;
}
.en-replay__title {
  font-size: 1.3rem;
  margin-left: 0.2rem;
  font-weight: 400;
}
.en-replay__label {
  opacity: 0.4;
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1rem;
  text-transform: uppercase;
}
.en-replay__text {
  line-height: 1rem;
  word-break: break-word;
}
.en-replay__icon-text {
  display: flex;
  align-items: center;
}
.en-replay__icon-text::before {
  content: '';
  height: 1.7rem;
  width: 1.7rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  opacity: 0.5;
  margin-right: 0.3rem;
}
.en-replay__icon-text.--timer::before {
  background-image: url(/modern-3/3752b35c972a920a62a2.svg);
}
.en-replay__icon-text.--player::before {
  background-image: url(/modern-3/3752b35c972a920a62a2.svg);
}
.en-replay__icon-text.--views::before {
  background-image: url(/modern-3/a7021f19723911dd2c5e.svg);
}
.en-replay__campaigns {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.en-replay__campaign {
  background: rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  height: 1.2rem;
  width: 1.2rem;
  border-radius: 50%;
  font-size: 0.8rem;
}

:root {
  --gj-cookie-prompt-background: #263238;
  --gj-cookie-prompt-button: #b71c1c;
  --gj-download-link-color: #74d5e2;
  --gj-register-background: #202a33;
  --gj-register-accent: #74d5e2;
  --gj-register-accent-filter: hue-rotate(140deg);
  --gj-register-accent-rgb: 116, 213, 226;
  --gj-register-image: url(/modern-3/2c8f5f7442da890f2bcf.jpg);
  --gj-register-button-background: linear-gradient(180deg, #FEBE6B 0%, #D88756 100%), #D88756;
  --gj-register-button-shadow: #db835d;
}
.f-alumni {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
}
.f-alumni-normal {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
}
.f-ptsans {
  font-family: 'PT Sans', sans-serif;
}
.f-14 {
  font-size: 14px;
  line-height: 20px;
}
.f-16 {
  font-size: 16px;
  line-height: 24px;
}
.f-18 {
  font-size: 18px;
  line-height: 26px;
}
@media only screen and (max-width: 1200px) {
  .f-18 {
    font-size: 16px;
    line-height: 24px;
  }
}
.f-20 {
  font-size: 20px;
  line-height: 32px;
}
@media only screen and (max-width: 1600px) {
  .f-20 {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-20 {
    font-size: 16px;
    line-height: 24px;
  }
}
.f-22 {
  font-size: 22px;
  line-height: 36px;
}
@media only screen and (max-width: 1600px) {
  .f-22 {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-22 {
    font-size: 18px;
    line-height: 28px;
  }
}
.f-24 {
  font-size: 24px;
  line-height: 32px;
}
@media only screen and (max-width: 1600px) {
  .f-24 {
    font-size: 22px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-24 {
    font-size: 18px;
    line-height: 28px;
  }
}
.f-32 {
  font-size: 32px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .f-32 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-32 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .f-32 {
    font-size: 22px;
  }
}
.f-40 {
  font-size: 40px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .f-40 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-40 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 500px) {
  .f-40 {
    font-size: 24px;
  }
}
.f-48 {
  font-size: 48px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .f-48 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-48 {
    font-size: 28px;
  }
}
.f-56 {
  font-size: 56px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .f-56 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-56 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .f-56 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 500px) {
  .f-56 {
    font-size: 24px;
  }
}
.f-64 {
  font-size: 64px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .f-64 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1200px) {
  .f-64 {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .f-64 {
    font-size: 36px;
  }
}
@media only screen and (max-width: 500px) {
  .f-64 {
    font-size: 32px;
  }
}
.f-96 {
  font-size: 96px;
  line-height: 1em;
}
@media only screen and (max-width: 1200px) {
  .f-96 {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  .f-96 {
    font-size: 56px;
  }
}
@media only screen and (max-width: 760px) {
  .f-96 {
    font-size: 42px;
  }
}
@keyframes dropdown {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.en-navbar {
  display: block;
  position: absolute;
  width: 100%;
  z-index: 100;
  padding: 0.6rem 0;
  left: 0;
  right: 0;
  top: 4rem;
}
@media only screen and (max-width: 1100px) {
  .en-navbar {
    top: 3rem;
  }
}
.en-navbar::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: -5rem;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
  background: linear-gradient(180deg, #050C0F 0%, rgba(5, 12, 15, 0.92) 11%, rgba(5, 12, 15, 0.65) 35%, rgba(5, 12, 15, 0.26) 64%, rgba(5, 12, 15, 0.03) 90%, rgba(5, 12, 15, 0) 100%);
}
.en-navbar.m--sticky {
  position: fixed;
  top: 0;
}
.en-navbar.m--sticky::after {
  opacity: 1;
}
.en-navbar__container {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 1920px;
  padding-right: 2rem;
  padding-left: 2rem;
}
@media only screen and (max-width: 500px) {
  .en-navbar__container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.en-navbar__logo {
  background-image: url(/modern-3/e39a2c259a6870922278.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: relative;
  height: 3.2rem;
  width: 5rem;
  flex-shrink: 0;
}
.en-navbar__region-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #FFBB5A 0%, #E5824B 100%);
  border-radius: 0.67px;
  border-top: 1px solid #FFEDC9;
  border-bottom: 2px solid #C06030;
  box-sizing: border-box;
  margin-left: 12px;
  flex-shrink: 0;
  height: 3rem;
  width: 1.5rem;
  text-decoration: none;
  transition: all 0.2s ease;
}
.en-navbar__region-badge:hover {
  opacity: 0.9;
}
.en-navbar__region-badge-icon {
  width: 11px;
  height: 14px;
  color: #000;
  margin-bottom: 2px;
}
.en-navbar__region-badge-text {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 13px;
  font-weight: 500;
  color: #000;
  line-height: 16px;
  letter-spacing: 0;
  vertical-align: middle;
}
.en-navbar__burger,
.en-navbar__register {
  cursor: pointer;
  display: none;
  height: 3rem;
  width: 3rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 2rem;
  border-radius: 3px;
  transition: all 0.2s ease;
}
.en-navbar__burger:hover,
.en-navbar__register:hover,
.en-navbar__burger:focus,
.en-navbar__register:focus {
  background-color: rgba(0, 0, 0, 0.2);
}
.en-navbar__burger {
  background-image: url(/modern-3/7fa1c7c430c2bdaebc27.svg);
}
.en-navbar__register {
  background-image: url(/modern-3/c5916288d1720eca3d83.svg);
}
.en-navbar__play {
  font-weight: 400 !important;
  height: 3rem !important;
  flex-direction: column;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  padding: 0 2rem !important;
}
.en-navbar__play small {
  font-size: 12px;
  font-family: sans-serif;
  letter-spacing: 0.085em;
  line-height: 0.8rem;
}
@media only screen and (max-width: 1360px) {
  .en-navbar__play small {
    font-size: 10px;
  }
}
.en-nav-dropdown {
  position: absolute;
  list-style: none;
  margin: 0;
  padding: 0;
  top: calc(3rem - 2px);
  left: -1px;
  display: none;
  z-index: -1;
  box-shadow: 0px 0.8rem 1.6rem rgb(var(--en-bg-rgb));
  border: 1px solid var(--en-muted-border-color);
  background-color: rgba(13, 25, 30, 0.9);
  transition: all 0.1s ease;
}
.en-nav-dropdown__item {
  height: 3rem;
}
.en-nav-dropdown__item.m--tablet-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .en-nav-dropdown__item.m--tablet-only {
    display: flex;
  }
}
.en-nav-dropdown__item.m--no-tablet {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .en-nav-dropdown__item.m--no-tablet {
    display: none;
  }
}
.en-nav-dropdown__link {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  padding: 0 1.6rem 0 0.8rem;
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
  height: 100%;
  white-space: nowrap;
  transition: all 0.2s ease;
  opacity: 0.7;
}
@media only screen and (max-width: 1650px) {
  .en-nav-dropdown__link {
    font-size: 16px;
  }
}
.en-nav-dropdown__link.m--active,
.en-nav-dropdown__link:hover,
.en-nav-dropdown__link:focus {
  opacity: 1;
}
.en-nav-dropdown__link:active {
  opacity: 0.8;
}
.en-nav {
  border-bottom: 1px solid var(--en-muted-border-color);
  border-top: 1px solid var(--en-muted-border-color);
  flex: 1;
  margin: 0 0.5rem 0 1rem;
  height: 3rem;
}
.en-nav__list {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 0 1.4rem;
  height: 100%;
}
.en-nav__item {
  flex-shrink: 0;
  height: 100%;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
}
.en-nav__item.m--mobile {
  display: none;
}
@media only screen and (max-width: 1100px) {
  .en-nav__item.m--mobile {
    display: flex;
  }
}
.en-nav__item.m--desktop {
  position: unset;
}
@media only screen and (max-width: 1100px) {
  .en-nav__item.m--desktop {
    display: none;
  }
}
.en-nav__item.m--dropdown {
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
}
.en-nav__item.m--dropdown:hover,
.en-nav__item.m--dropdown:focus-within {
  border-left-color: var(--en-muted-border-color);
  border-right-color: var(--en-muted-border-color);
  background-color: rgba(13, 25, 30, 0.62);
}
.en-nav__item.m--dropdown:hover .en-nav-dropdown,
.en-nav__item.m--dropdown:focus-within .en-nav-dropdown {
  z-index: 5;
  display: flex;
  flex-direction: column;
  animation: dropdown 0.2s ease;
}
.en-nav__item.m--dropdown:hover .en-nav__caret,
.en-nav__item.m--dropdown:focus-within .en-nav__caret {
  transform: rotate(180deg);
}
.en-nav__item.m--highlighted {
  background: #0D1923 !important;
  border: 0.5px solid #C8A066 !important;
  position: relative;
  margin-left: 0.5rem;
}
.en-nav__item.m--highlighted::before {
  content: '';
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
  bottom: 0;
  width: 70%;
  opacity: 0.44;
  background: radial-gradient(71.43% 180.27% at 0% 50%, #9A622E 0%, rgba(146, 84, 44, 0.87) 13.54%, rgba(136, 68, 42, 0.7) 30.73%, rgba(115, 32, 38, 0.26) 67.71%, rgba(104, 12, 36, 0.14) 87.5%, rgba(97, 0, 35, 0) 100%);
}
.en-nav__item.m--tablet-only {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .en-nav__item.m--tablet-only {
    display: flex;
  }
}
.en-nav__item.m--no-tablet {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .en-nav__item.m--no-tablet {
    display: none;
  }
}
.en-nav__caret,
.en-nav__away {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-left: 0.3rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.en-nav__caret {
  height: 12px;
  width: 12px;
  background-image: url(/modern-3/f58e8637f3eb0715b224.svg);
}
@media only screen and (max-width: 1100px) {
  .en-nav__caret {
    background-image: url(/modern-3/f28a18036b342c949e2f.svg);
  }
}
@media only screen and (max-width: 1360px) {
  .en-nav__caret {
    height: 8px;
    width: 8px;
  }
}
.en-nav__caret.m--highlighted {
  background-image: url(/modern-3/4e38a7d1aa7e26e28b54.svg);
}
@media only screen and (max-width: 1100px) {
  .en-nav__caret.m--highlighted {
    background-image: url(/modern-3/1a2dfdd080dae2e3188f.svg);
  }
}
.en-nav__away {
  background-image: url(/modern-3/d4b435506dbff2a3ad79.svg);
  height: 7px;
  width: 7px;
}
.en-nav__link {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 2rem;
  height: 100%;
  text-decoration: none;
  color: #fff;
  position: relative;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1650px) {
  .en-nav__link {
    font-size: 18px;
  }
}
.en-nav__link::after {
  background-image: url(/modern-3/e990a0e5f21b5e9bd10a.svg);
  background-size: contain;
}
.en-nav__link:hover::before,
.en-nav__link:focus::before,
.en-nav__link.m--active::before {
  opacity: 1;
}
.en-nav__link.m--accent {
  color: #BC91FF;
}
.en-nav__link.m--active {
  color: #ffb84f;
}
.en-nav-icon {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 0.3rem;
  flex-shrink: 0;
  height: 16px;
  width: 16px;
  z-index: 1;
}
@media only screen and (max-width: 1360px) {
  .en-nav-icon {
    height: 12px;
    width: 12px;
  }
}
.en-nav-icon.m--star {
  background-image: url(/modern-3/3af7e3dd2d4cc17163a5.svg);
}
.en-nav-shop {
  left: unset;
  right: -2rem;
}
.en-nav-shop__container {
  display: flex;
  padding: 1rem;
}
.en-nav-shop__item {
  cursor: pointer;
  text-decoration: none;
  width: 13.5rem;
  margin: 0.5rem;
  background: #0D191E;
  border: 1px solid rgba(255, 255, 255, 0.25);
  transition: border-color 0.2s ease;
}
.en-nav-shop__item:hover,
.en-nav-shop__item:active {
  border-color: #D4B77F;
}
.en-nav-shop__image {
  height: 7.5rem;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
.en-nav-shop__image::after {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/modern-3/d4b435506dbff2a3ad79.svg);
  position: absolute;
  display: block;
  height: 7px;
  width: 7px;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 1;
  opacity: 0.7;
}
.en-nav-shop__image.m--item-1 {
  background-image: url(/modern-3/68d64a46b8dab47eed97.jpg);
}
.en-nav-shop__image.m--item-2 {
  background-image: url(/modern-3/7c56d7346fc59652cf67.jpg);
}
.en-nav-shop__image.m--item-3 {
  background-image: url(/modern-3/1dee151c9cc8849c21cb.jpg);
}
.en-nav-shop__title {
  font-size: 22px;
  line-height: 36px;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  color: #D4B77F;
  padding: 0.5rem 1.1rem;
}
@media only screen and (max-width: 1600px) {
  .en-nav-shop__title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-nav-shop__title {
    font-size: 18px;
    line-height: 28px;
  }
}
.en-nav-shop__text {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.62);
  padding: 0 1.1rem 1.1rem;
}
@media only screen and (max-width: 1360px) {
  .en-nav-shop__text {
    font-size: 14px;
  }
}
.en-navbar__logo::before,
.en-nav__link::before,
.en-navbar__logo::after,
.en-nav__link::after {
  content: '';
  position: absolute;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
  height: 8px;
  width: 100%;
  bottom: -4px;
  left: 0;
  right: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.en-navbar__logo::before,
.en-nav__link::before {
  background-image: radial-gradient(50% 50% at 50% 50%, #ffb84f 0%, rgba(255, 110, 79, 0) 100%);
  background-size: 100% 2px;
}
.en-navbar__logo.m--active::before,
.en-nav__link.m--active::before,
.en-navbar__logo.m--active::after,
.en-nav__link.m--active::after {
  opacity: 1;
}
.en-navbar__logo.m--highlighted,
.en-nav__link.m--highlighted {
  color: #D4B77F;
}
.en-navbar__logo.m--highlighted:hover,
.en-nav__link.m--highlighted:hover,
.en-navbar__logo.m--highlighted:active,
.en-nav__link.m--highlighted:active {
  color: #ffd482;
}
@media only screen and (max-width: 1100px) {
  .en-navbar {
    padding: 1.2rem 0;
    transition: padding 0.2s ease;
  }
  .en-navbar__container {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .en-navbar__logo {
    height: 4rem;
    width: 5rem;
    background-position: center;
    transition: all 0.2s ease;
  }
  .en-navbar__logo::after,
  .en-navbar__logo::before {
    display: none;
  }
  .en-navbar__region-badge {
    position: fixed;
    left: calc(4rem + 15px);
    top: 4.8rem;
    height: 3rem;
    width: 1.5rem;
    margin-left: 0;
    z-index: 101;
  }
  .en-navbar__region-badge-icon {
    width: 11px;
    height: 14px;
    margin-bottom: 3px;
  }
  .en-navbar__region-badge-text {
    font-size: 13px;
  }
  .en-navbar__play {
    display: none !important;
  }
  .en-navbar__burger,
  .en-navbar__register {
    display: block;
  }
  .en-navbar.m--sticky .en-navbar__logo {
    height: 3rem;
    width: 4rem;
  }
  .en-navbar.m--active {
    background-color: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0px 4rem rgba(0, 0, 0, 0.6);
  }
  .en-navbar.m--active::after {
    opacity: 1;
  }
  .en-navbar.m--active .en-navbar__burger {
    background-image: url(/modern-3/c5916288d1720eca3d83.svg);
    transform: rotate(135deg);
  }
  .en-navbar.m--active .en-nav {
    display: block;
  }
  .en-nav-dropdown {
    top: 3rem;
  }
  .en-nav {
    display: none;
    order: 4;
    flex: 1;
    min-width: 100%;
    border: none;
    margin: 0;
    height: auto;
  }
  .en-nav__list {
    margin: 1rem 0;
    flex-direction: column;
  }
  .en-nav__item {
    padding: 0 0.5rem;
    height: 4rem;
    border-color: transparent !important;
  }
}
.en-play-button {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 2rem;
  letter-spacing: 2px;
  min-width: 16rem;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 1.5rem;
  height: 3.4rem;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #0d191e;
  text-shadow: 0px 1px 0px rgba(255, 216, 194, 0.6);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  transition: all 0.2s ease;
  border-top: 1px solid #ffe5b1;
  background: linear-gradient(180deg, #FEBE6B 0%, rgba(216, 135, 86, 0) 100%), #D88756;
  border-bottom: 2px solid #B3653C;
}
@media only screen and (max-width: 500px) {
  .en-play-button {
    height: 4rem;
    min-width: auto;
  }
}
@media only screen and (max-width: 330px) {
  .en-play-button {
    padding: 0 1rem !important;
  }
}
.en-play-button.m--main-cta {
  font-weight: 600;
  padding: 0 2rem;
  height: 3.6rem;
}
.en-play-button.m--orange {
  background: linear-gradient(180deg, #ffb84f 3.65%, rgba(255, 163, 97, 0) 100%), #ff6c2e;
  border-bottom: 2px solid #8d3300;
}
.en-play-button:hover,
.en-play-button:focus {
  background: linear-gradient(180deg, #ffc34f 0%, rgba(255, 220, 97, 0) 100%), #ff922e;
  border-bottom-color: #d97320;
}
.en-play-button:active {
  background: #cd680a;
  border-bottom-color: #cd680a;
  border-top-color: #99571b;
}
.en-play-button__content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
@media only screen and (max-width: 1600px) {
  .en-play-button__content {
    gap: 1px;
  }
}
.en-play-button__hint {
  font-family: 'PT Sans', sans-serif;
  font-size: 15px;
  line-height: 1em;
  text-shadow: none;
  font-weight: normal;
  text-transform: none;
  letter-spacing: 0;
}
@media only screen and (max-width: 1600px) {
  .en-play-button__hint {
    font-size: 12px;
  }
}
.en-play-button__icon {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  height: 2rem;
  width: 2rem;
  margin-right: 0.5rem;
}
.en-play-button__icon.m--gaijin {
  background-image: url(/modern-3/a02682e06bee88cc2459.svg);
}
.en-play-button__icon.m--download {
  background-image: url(/modern-3/0cbb87cfa5cfef912556.svg);
}
.en-play-platforms {
  display: flex;
  flex-wrap: wrap;
}
.en-play-platforms.m--center {
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 500px) {
  .en-play-platforms {
    align-items: center;
    justify-content: center;
  }
}
@keyframes bounce {
  from {
    transform: translateY(-1px);
  }
  50% {
    transform: translateY(1px);
  }
  100% {
    transform: translateY(-1px);
  }
}
.en-play-platform {
  cursor: pointer;
  text-decoration: none;
  height: 2.4rem;
  width: 5.8rem;
  margin-right: 1rem;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
}
.en-play-platform:hover,
.en-play-platform:focus {
  opacity: 1;
}
.en-play-platform:active {
  opacity: 0.9;
}
.en-play-platform.m--xbox {
  width: 8.5rem;
  background-image: url(/modern-3/4bde561d1a56e869e4fe.svg);
}
.en-play-platform.m--xbox-one {
  background-image: url(/modern-3/989b7a81937476d40087.svg);
}
.en-play-platform.m--ps5 {
  background-image: url(/modern-3/a3f3a3330871de7b0a77.svg);
}
.en-play-platform.m--ps4 {
  background-image: url(/modern-3/21255de443d9fef45a90.svg);
}
.en-play-platform.m--windows {
  background-image: url(/modern-3/cccdbee641e73ed52984.svg);
}
.en-play-platform.m--steam {
  background-image: url(/modern-3/620b1f095b7de25786ae.svg);
  display: block;
}
.en-play-platform.m--xbox-gp {
  background-image: url(/modern-3/49a73f9400b2cd60143d.svg);
  display: block;
}
.en-play-platform__wrap {
  position: relative;
  height: 2.4rem;
  width: 5.8rem;
}
.en-play-platform__popover {
  display: block;
  text-decoration: none;
  cursor: pointer;
  background-color: #65BEF2;
  color: #1E3A4B;
  font-size: 18px;
  line-height: 120%;
  border-radius: 2px;
  white-space: nowrap;
  position: absolute;
  z-index: 100;
  top: -45px;
  left: -50%;
  background-image: url(/modern-3/5ca702b7783a44b47a83.svg);
  background-repeat: no-repeat;
  background-position: 9px center;
  padding: 6px 9px 6px 36px;
  transition: all 0.2s ease-out;
  animation: bounce 1.3s infinite ease-in-out;
}
html[lang="de"] .en-play-platform__popover {
  top: -60px;
}
@media only screen and (max-width: 1200px) {
  .en-play-platform__popover {
    padding: 5px 9px 5px 36px;
    font-size: 16px;
  }
}
@media only screen and (max-width: 760px) {
  .en-play-platform__popover {
    padding: 4px 9px 4px 36px;
    font-size: 14px;
    left: -75%;
    top: 43px;
  }
  html[lang="de"] .en-play-platform__popover {
    top: 55px;
  }
  .en-play-platform__popover::after {
    bottom: unset;
    top: -4px;
  }
}
.en-play-platform__popover:hover {
  transform: translateY(-1px);
  animation: none;
}
.en-play-platform__popover::after {
  content: " ";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: rotate(45deg);
  background-color: #65BEF2;
}
.en-more-button {
  cursor: pointer;
  text-decoration: none;
  text-transform: uppercase;
  color: #f5a55a;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
  flex-shrink: 0;
}
.en-more-button:hover,
.en-more-button:focus {
  color: #ffb84f;
}
.en-more-button:active {
  color: #e78b37;
}
.en-more-button::after {
  content: '';
  background-image: url(/modern-3/adfbab8c155ae65e611c.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-left: 0.6rem;
  height: 0.65em;
  width: 0.65em;
  flex-shrink: 0;
}
.en-clear-button {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  height: 2.6rem;
  padding: 0 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(13, 25, 30, 0.3);
  border: 0.25px solid rgba(255, 212, 130, 0.2);
  border-radius: 4px;
  color: #ffd482;
  transition: all 0.2s ease;
  font-size: 22px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .en-clear-button {
    font-size: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-clear-button {
    font-size: 18px;
  }
}
.en-clear-button.m--white {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}
.en-clear-button.m--blur {
  backdrop-filter: blur(4px);
}
.en-clear-button.m--full {
  width: 100%;
}
.en-clear-button.m--choose-region {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  gap: 0.6rem;
  z-index: 900;
  display: none;
}
.en-clear-button.m--choose-region.m--visible {
  display: inline-flex;
}
.en-clear-button:hover,
.en-clear-button:focus {
  color: #ffdf8b;
  border-color: #ffdf8b;
  background-color: rgba(13, 25, 30, 0.74);
}
.en-clear-button:active {
  color: #e78b37;
  border-color: #e78b37;
  background-color: #0d191e;
}
.en-play-sysreq {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 1.5rem;
}
.en-play-sysreq__divider {
  width: 1px;
  height: 100%;
  background-color: #fff;
  opacity: 0.2;
}
.en-sysreq-button {
  font-size: 18px;
  line-height: 26px;
  font-family: 'PT Sans', sans-serif;
  cursor: pointer;
  height: 2.6rem;
  padding: 0 1rem;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: all 0.2s ease;
}
@media only screen and (max-width: 1200px) {
  .en-sysreq-button {
    font-size: 16px;
    line-height: 24px;
  }
}
.en-sysreq-button::before {
  content: '';
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
  opacity: 0.9;
  margin-right: 0.5rem;
  height: 1.2em;
  width: 1.2em;
}
.en-sysreq-button:hover,
.en-sysreq-button:focus {
  opacity: 1;
}
.en-sysreq-button:active {
  opacity: 0.9;
}
.en-sysreq-button.m--bordered {
  padding: 0 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.en-sysreq-button.m--sysreq::before {
  background-image: url(/modern-3/fa37fac64b0b80137d92.svg);
}
.en-sysreq-button.m--register::before {
  background-image: url(/modern-3/9be54f5bd3dca552b227.svg);
}
.en-sysreq-button.m--download::before {
  background-image: url(/modern-3/10749a9c2e489d54e81b.svg);
}
@media only screen and (max-width: 500px) {
  .en-sysreq-button__small-text {
    font-size: 11px;
    line-height: 13px;
  }
}
:root {
  --swiper-pagination-color: #fff;
  --swiper-navigation-color: #fff;
  --swiper-navigation-size: 2.5rem;
  --swiper-theme-color: #fff;
}
@media only screen and (max-width: 1600px) {
  :root {
    --swiper-navigation-size: 2.5rem;
  }
}
@media only screen and (max-width: 1200px) {
  :root {
    --swiper-navigation-size: 1.5rem;
  }
}
.en-webp {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.en-bg {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 2560px;
}
.en-bg.m--faded {
  opacity: 0.1;
}
.en-bg.m--features {
  top: 30%;
}
.en-bg.m--page {
  height: 47rem;
}
@media only screen and (max-width: 1024px) {
  .en-bg.m--page {
    height: 40rem;
  }
}
@media only screen and (max-width: 760px) {
  .en-bg.m--page {
    height: 35rem;
  }
}
@media only screen and (max-width: 760px) {
  .en-bg.m--page.m--squads .en-bg__radial-fader,
  .en-bg.m--page.m--campaign .en-bg__radial-fader {
    display: none;
  }
}
.en-bg.m--bottom {
  bottom: 14rem;
  height: initial;
}
@media only screen and (max-width: 760px) {
  .en-bg.m--bottom {
    height: 20rem;
  }
}
.en-bg.m--this-is {
  top: 4rem;
}
@media only screen and (max-width: 500px) {
  .en-bg.m--this-is {
    top: 20rem;
    height: 40rem;
  }
}
.en-bg.m--spec {
  right: 0;
  left: initial;
  width: 75%;
}
@media only screen and (max-width: 660px) {
  .en-bg.m--spec {
    width: 100%;
    height: 23rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-bg.m--spec {
    height: 17rem;
  }
}
.en-bg.m--spec .en-top-fader {
  height: 35%;
}
.en-bg.m--spec .en-bg__bottom-fader {
  height: 45%;
}
.en-bg.m--spec .en-bg__left-fader {
  width: 35%;
}
@media only screen and (max-width: 660px) {
  .en-bg.m--spec .en-bg__left-fader {
    display: none;
  }
}
.en-bg.m--spec.m--idx-1 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-2 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-3 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-4 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-5 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-6 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-7 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-8 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-9 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-10 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-11 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-12 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-13 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--spec.m--idx-14 {
  background-image: url(/modern-3/d6ae6a56874e147ad3fc.jpg);
}
.en-bg.m--single-campaign {
  left: 30%;
  width: auto;
}
@media only screen and (max-width: 760px) {
  .en-bg.m--single-campaign {
    left: 0;
    height: 20rem;
  }
}
.en-bg__4k-fader-left,
.en-bg__4k-fader-right {
  content: '';
  top: 0;
  bottom: 0;
  z-index: 1;
  height: 100%;
  position: absolute;
  display: none;
  width: 20rem;
}
.en-bg__4k-fader-left {
  left: 0;
  background: linear-gradient(90deg, rgba(var(--en-bg-rgb), 1) 0%, rgba(var(--en-bg-rgb), 0) 100%);
}
.en-bg__4k-fader-right {
  right: 0;
  background: linear-gradient(90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
@media only screen and (min-width: 2561px) {
  .en-bg__4k-fader-left,
  .en-bg__4k-fader-right {
    display: block;
  }
}
.en-bg__dots {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-size: 2px;
  background-repeat: repeat;
  background-image: url(/modern-3/d63bd8859d5c2dfa2c95.png);
}
.en-bg__radial-fader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 60%;
  background: radial-gradient(50% 68% at 50% 50%, rgba(var(--en-bg-rgb), 1) 0%, rgba(var(--en-bg-rgb), 0) 100%);
}
.en-bg__fader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-bg__left-fader {
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  height: 100%;
  width: 80%;
  background: linear-gradient(-90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-bg__right-fader {
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1px;
  height: 100%;
  width: 80%;
  background: linear-gradient(-90deg, rgba(var(--en-bg-rgb), 1) 0%, rgba(var(--en-bg-rgb), 0) 100%);
}
.en-bg__top-fader {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30%;
  width: 100%;
  background: linear-gradient(0deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 11%, rgba(var(--en-bg-rgb), 0.33) 36%, rgba(var(--en-bg-rgb), 0.72) 65%, rgba(var(--en-bg-rgb), 0.95) 93%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-bg__top-fader.m--this-is {
  height: 100%;
  background: radial-gradient(74% 76% at 50% 76%, rgba(var(--en-bg-rgb), 0) 53%, rgba(var(--en-bg-rgb), 0.33) 70%, rgba(var(--en-bg-rgb), 0.67) 84%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-bg__top-fader.m--index {
  background: linear-gradient(180deg, #050C0F 0%, rgba(5, 12, 15, 0.92) 11%, rgba(5, 12, 15, 0.65) 36%, rgba(5, 12, 15, 0.26) 64%, rgba(5, 12, 15, 0.03) 90%, rgba(5, 12, 15, 0) 100%);
}
.en-bg__top-fader.m--bottom {
  height: 50%;
}
.en-bg__bottom-fader {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 21rem;
  width: 100%;
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 11.5%, rgba(var(--en-bg-rgb), 0.38) 41%, rgba(var(--en-bg-rgb), 0.65) 63%, rgba(var(--en-bg-rgb), 0.95) 85%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-bg__bottom-fader.m--this-is {
  height: 6rem;
}
.en-bg__bottom-fader.m--index {
  height: 11rem;
}
.en-bg__bottom-fader.m--bottom {
  height: 50%;
}
.en-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  height: 30rem;
  padding-bottom: 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 1100px) {
  .en-header {
    justify-content: center;
  }
}
.en-header__logo {
  background-image: url(/modern-3/da55137c41425d74b225.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 16rem;
  width: 22rem;
}
@media only screen and (max-width: 1100px) {
  .en-header__logo {
    width: 16rem;
  }
}
.en-header__fader {
  z-index: -1;
  position: absolute;
  bottom: 0;
  height: 70%;
  width: 100%;
  max-width: 50rem;
  background: radial-gradient(50% 50% at 50% 50%, rgba(var(--en-bg-rgb), 1) 0%, rgba(var(--en-bg-rgb), 0) 100%);
}
.en-header__buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.en-header__buttons .en-clear-button {
  min-width: 10rem;
}
@media only screen and (max-width: 1100px) {
  .en-header__buttons .en-clear-button {
    display: none;
  }
}
.en-trailer {
  display: none;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 500px) {
  .en-trailer {
    display: block;
  }
}
.en-trailer__wrapper {
  box-shadow: 0 0.4rem 1.6rem rgb(var(--en-bg-rgb));
  background-color: #0d191e;
  margin-bottom: 1.2rem;
}
.en-trailer__video {
  width: 100%;
  padding-bottom: calc(100% * 9 / 16);
  border: 0.25px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.en-trailer__video gj-youtube {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.en-pinned-news {
  padding-bottom: 2rem;
  display: flex;
  gap: 1.6rem;
  min-height: 4rem;
}
@media only screen and (max-width: 760px) {
  .en-pinned-news {
    flex-direction: column;
  }
}
.en-pinned-news__sideblocks {
  width: 34%;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
@media only screen and (max-width: 760px) {
  .en-pinned-news__sideblocks {
    width: 100%;
  }
}
.en-news-stories {
  position: relative;
  width: 66%;
}
@media only screen and (max-width: 760px) {
  .en-news-stories {
    width: 100%;
  }
}
.en-news-stories__swiper {
  height: 18rem;
}
@media only screen and (max-width: 500px) {
  .en-news-stories__swiper {
    height: 26rem;
  }
}
.en-news-stories__pagination {
  height: 3rem;
  position: absolute;
  bottom: 0.5rem;
  left: 2rem;
  z-index: 7;
  display: flex;
  gap: 0.5rem;
}
@media only screen and (max-width: 760px) {
  .en-news-stories__pagination {
    position: unset;
    justify-content: center;
  }
}
.en-news-stories__bullet {
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 3rem;
  width: 2rem;
}
.en-news-stories__bullet::after {
  content: '';
  height: 4px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.14);
  transition: background-color 0.2s ease;
}
.en-news-stories__bullet:hover::after,
.en-news-stories__bullet:focus::after {
  background-color: rgba(255, 255, 255, 0.25);
}
.en-news-stories__bullet.m--active::after {
  background-color: rgba(255, 255, 255, 0.4);
}
.en-news-stories__item {
  background-color: rgb(var(--en-bg-light-rgb));
  text-decoration: none;
  position: relative;
}
.en-news-stories__item::after {
  content: '';
  position: absolute;
  z-index: 3;
  height: 8rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(190deg, rgba(var(--en-bg-light-rgb), 0) 31.5%, rgba(var(--en-bg-light-rgb), 0.05) 38.29%, rgba(var(--en-bg-light-rgb), 0.380208) 51.34%, rgba(var(--en-bg-light-rgb), 0.619792) 63.84%, rgba(var(--en-bg-light-rgb), 0.9) 74.84%, rgba(var(--en-bg-light-rgb), 1) 83.67%);
}
@media only screen and (max-width: 760px) {
  .en-news-stories__item::after {
    height: 5rem;
    background: linear-gradient(180deg, rgba(var(--en-bg-light-rgb), 0) 31.5%, rgba(var(--en-bg-light-rgb), 0.05) 38.29%, rgba(var(--en-bg-light-rgb), 0.380208) 51.34%, rgba(var(--en-bg-light-rgb), 0.619792) 63.84%, rgba(var(--en-bg-light-rgb), 0.9) 74.84%, rgba(var(--en-bg-light-rgb), 1) 83.67%);
  }
}
.en-news-stories__content {
  padding: 1.4rem 2rem;
}
@media only screen and (max-width: 500px) {
  .en-news-stories__content {
    margin-top: -3rem;
    padding: 1rem 1.5rem;
  }
}
.en-news-stories__title {
  color: #fff;
  max-width: 55%;
  margin: 0;
  position: relative;
  z-index: 4;
  text-wrap: balance;
}
@media only screen and (max-width: 1200px) {
  .en-news-stories__title {
    max-width: 60%;
  }
}
@media only screen and (max-width: 1024px) {
  .en-news-stories__title {
    max-width: 70%;
  }
}
@media only screen and (max-width: 500px) {
  .en-news-stories__title {
    max-width: 100%;
  }
}
.en-news-stories__text {
  color: var(--en-muted-text-color);
  max-width: 45%;
  position: relative;
  z-index: 3;
  margin: 0.5rem 0;
}
@media only screen and (max-width: 1200px) {
  .en-news-stories__text {
    max-width: 50%;
  }
}
@media only screen and (max-width: 1024px) {
  .en-news-stories__text {
    max-width: 60%;
  }
}
@media only screen and (max-width: 500px) {
  .en-news-stories__text {
    max-width: 100%;
  }
}
.en-news-stories__img-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 70%;
}
.en-news-stories__img-wrapper::before {
  content: '';
  position: absolute;
  z-index: 2;
  left: 0;
  right: 50%;
  bottom: 0;
  top: 0;
  background: linear-gradient(270deg, rgba(var(--en-bg-light-rgb), 0) 0%, rgba(var(--en-bg-light-rgb), 0.05) 8%, rgba(var(--en-bg-light-rgb), 0.38) 38%, rgba(var(--en-bg-light-rgb), 0.62) 62%, rgba(var(--en-bg-light-rgb), 0.9) 87%, rgba(var(--en-bg-light-rgb), 1) 100%);
}
@media only screen and (max-width: 500px) {
  .en-news-stories__img-wrapper {
    position: relative;
    width: 100%;
  }
  .en-news-stories__img-wrapper::before {
    top: unset;
    right: 0;
    height: 4rem;
    background: linear-gradient(180deg, rgba(var(--en-bg-light-rgb), 0) 0%, rgba(var(--en-bg-light-rgb), 0.05) 8%, rgba(var(--en-bg-light-rgb), 0.38) 38%, rgba(var(--en-bg-light-rgb), 0.62) 62%, rgba(var(--en-bg-light-rgb), 0.9) 87%, rgba(var(--en-bg-light-rgb), 1) 100%);
  }
}
.en-news-stories__img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  inset: 0;
  z-index: 1;
}
@media only screen and (max-width: 500px) {
  .en-news-stories__img {
    aspect-ratio: 1.77777778;
  }
}
.en-shop {
  flex: 1;
  background: var(--en-bg-light-color);
  padding: 1.2rem 1.6rem;
  color: var(--en-accent-color);
  text-decoration: none;
  display: flex;
  align-items: flex-end;
  position: relative;
}
@media only screen and (max-width: 760px) {
  .en-shop {
    min-height: 14rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-shop:not(.m--mobile) {
    display: none;
  }
}
.en-shop__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 7;
  margin: 0;
}
.en-shop__external {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
}
.en-shop__bg {
  position: absolute;
  inset: 0;
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
}
.en-gamepass {
  color: var(--en-text-color);
  text-decoration: none;
  background: var(--en-bg-light-color);
  padding: 1.2rem 1.6rem;
}
@media only screen and (max-width: 500px) {
  .en-gamepass {
    display: none;
  }
}
.en-gamepass__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  position: relative;
  z-index: 7;
  margin: 0;
}
.en-gamepass__date {
  margin: 0;
  position: relative;
  z-index: 7;
  font-size: 16px;
}
@media only screen and (max-width: 760px) {
  .en-gamepass__date {
    font-size: 14px;
  }
}
.en-gamepass__img-wrapper {
  position: absolute;
  left: 30%;
  top: 0;
  right: 0;
  bottom: 0;
}
.en-gamepass__img-wrapper::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  top: 0;
  background: linear-gradient(90deg, rgba(var(--en-bg-light-rgb), 1) 0%, rgba(var(--en-bg-light-rgb), 0.9) 16.15%, rgba(var(--en-bg-light-rgb), 0.619792) 40.1%, rgba(var(--en-bg-light-rgb), 0.380208) 61.98%, rgba(var(--en-bg-light-rgb), 0.05) 90.1%, rgba(var(--en-bg-light-rgb), 0) 100%);
}
.en-gamepass__img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  z-index: 1;
}
.en-lastnews__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1rem;
  user-select: none;
}
.en-lastnews__item {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--en-text-color);
  background-color: rgb(var(--en-bg-light-rgb));
  overflow: hidden;
  height: 100%;
  width: 100%;
}
.en-lastnews__item::after {
  content: '';
  position: absolute;
  z-index: 1;
  left: 0;
  bottom: 0;
  right: 0;
  height: 3rem;
  background: linear-gradient(180deg, rgba(var(--en-bg-light-rgb), 0) 0%, rgba(var(--en-bg-light-rgb), 1) 90%);
}
.en-lastnews__article {
  padding: 0 1rem 1rem;
}
.en-lastnews__img-wrapper {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  padding: 0 1rem 0.5rem;
  height: 45%;
}
.en-lastnews__img-wrapper::after {
  content: '';
  background: linear-gradient(180deg, rgba(var(--en-bg-light-rgb), 0) 0%, rgba(var(--en-bg-light-rgb), 0.05) 13.02%, rgba(var(--en-bg-light-rgb), 0.380208) 38.02%, rgba(var(--en-bg-light-rgb), 0.619792) 61.98%, rgba(var(--en-bg-light-rgb), 0.9) 81.77%, rgba(var(--en-bg-light-rgb), 1) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2.6rem;
}
.en-lastnews__img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
}
.en-lastnews__title {
  margin: 0;
  text-transform: uppercase;
}
.en-lastnews__text {
  margin: 0.5rem 0 0;
  color: var(--en-muted-text-color);
}
.en-lastnews__date {
  position: relative;
  z-index: 1;
}
.en-lastnews__more {
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(/modern-3/d21e8cb64f73c429e7ff.png);
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
}
.en-lastnews__more-content {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 6;
}
.en-lastnews__more-icon {
  background-image: url(/modern-3/948ce00ed5d89024f80b.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  height: 5rem;
  width: 5rem;
}
.en-lastnews__more-title {
  color: var(--en-text-color);
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  transition: color 0.1s ease-in;
}
.en-lastnews__more-title:hover,
.en-lastnews__more-title:focus {
  color: var(--en-accent-color);
}
.en-lastnews__more-title:active {
  color: #F5A55A;
}
.en-lastnews__more-link {
  color: var(--en-text-color);
  opacity: 0.64;
  transition: opacity 0.1s ease-in;
  text-decoration: none;
}
.en-lastnews__more-link:hover,
.en-lastnews__more-link:focus {
  opacity: 1;
}
.en-lastnews__more-link:active {
  opacity: 0.8;
}
.en-lastnews-swiper {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  max-width: 1920px;
}
.en-lastnews-swiper__wrapper {
  height: 24rem;
}
@media only screen and (max-width: 500px) {
  .en-lastnews-swiper__wrapper {
    height: 28rem;
  }
}
.en-lastnews-swiper__slide {
  height: 100%;
  padding-left: 1.6rem;
  width: calc((1600px + 1.6rem) / 4);
}
@media only screen and (max-width: 1920px) {
  .en-lastnews-swiper__slide {
    width: calc((1408px + 1.6rem) / 4);
  }
}
@media only screen and (max-width: 1600px) {
  .en-lastnews-swiper__slide {
    width: calc((85vw + 1.6rem) / 4);
  }
}
@media only screen and (max-width: 1200px) {
  .en-lastnews-swiper__slide {
    width: calc((85vw + 1.6rem) / 3);
  }
}
@media only screen and (max-width: 1024px) {
  .en-lastnews-swiper__slide {
    width: unset;
  }
}
@media only screen and (max-width: 600px) {
  .en-lastnews-swiper__slide {
    padding-left: 0;
  }
}
.en-lastnews-swiper__first {
  height: 100%;
  width: calc((1920px - 1600px) / 2 - 1.6rem);
}
@media only screen and (max-width: 1920px) {
  .en-lastnews-swiper__first {
    width: calc((100vw - 1408px) / 2 - 1.6rem);
  }
}
@media only screen and (max-width: 1600px) {
  .en-lastnews-swiper__first {
    width: calc((100vw - 85vw) / 2 - 1.6rem);
  }
}
@media only screen and (max-width: 1024px) {
  .en-lastnews-swiper__first {
    display: none;
  }
}
.en-lastnews-swiper__last {
  height: 100%;
  width: calc((1920px - 1600px) / 2);
}
@media only screen and (max-width: 1920px) {
  .en-lastnews-swiper__last {
    width: calc((100vw - 1408px) / 2);
  }
}
@media only screen and (max-width: 1600px) {
  .en-lastnews-swiper__last {
    width: calc((100vw - 85vw) / 2);
  }
}
@media only screen and (max-width: 1024px) {
  .en-lastnews-swiper__last {
    display: none;
  }
}
.en-lastnews-swiper::before,
.en-lastnews-swiper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 8rem;
  height: 100%;
  z-index: 10;
}
@media only screen and (max-width: 1024px) {
  .en-lastnews-swiper::before,
  .en-lastnews-swiper::after {
    width: 2.5rem;
  }
}
@media only screen and (max-width: 600px) {
  .en-lastnews-swiper::before,
  .en-lastnews-swiper::after {
    display: none;
  }
}
.en-lastnews-swiper::before {
  left: 0;
  background: linear-gradient(270deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 13%, rgba(var(--en-bg-rgb), 0.38) 38%, rgba(var(--en-bg-rgb), 0.62) 62%, rgba(var(--en-bg-rgb), 0.9) 82%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-lastnews-swiper::after {
  right: 0;
  background: linear-gradient(90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 13%, rgba(var(--en-bg-rgb), 0.38) 38%, rgba(var(--en-bg-rgb), 0.62) 62%, rgba(var(--en-bg-rgb), 0.9) 82%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-lastnews-swiper__navs {
  display: flex;
  gap: 0.8rem;
}
@media only screen and (max-width: 500px) {
  .en-lastnews-swiper__navs {
    display: none;
  }
}
.en-lastnews-swiper__nav {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgb(var(--en-bg-light-rgb));
  border-top: 1px solid var(--en-muted-border-color);
  border-radius: 3px;
  transition: all 0.2s ease;
  color: #ffb84f;
}
.en-lastnews-swiper__nav svg {
  height: 1rem;
  width: 1rem;
}
.en-lastnews-swiper__nav.swiper-button-disabled {
  color: var(--en-text-color);
  border-top-color: rgb(var(--en-bg-light-rgb));
  pointer-events: none;
  opacity: 0.5;
}
.en-lastnews-swiper__nav:hover,
.en-lastnews-swiper__nav:focus {
  background: #2e4148;
}
.en-lastnews-swiper__nav:active {
  background: #233237;
}
.en-features-swiper {
  display: none;
}
@media only screen and (max-width: 500px) {
  .en-features-swiper {
    display: block;
  }
}
.en-features-swiper__pagination {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  height: 10px;
}
.en-features-swiper__bullet {
  cursor: pointer;
  height: 8px;
  width: 8px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.en-features-swiper__bullet.m--active {
  background-color: rgba(255, 255, 255, 0.8);
  border-color: rgba(255, 255, 255, 0.8);
}
.en-features {
  position: relative;
  padding-bottom: 3.4rem;
}
@media only screen and (max-width: 500px) {
  .en-features {
    padding-bottom: 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-features__container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.en-features__header-title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 1.6rem;
  letter-spacing: 0.4rem;
  text-align: center;
  text-transform: uppercase;
  opacity: 0.62;
}
@media only screen and (max-width: 500px) {
  .en-features__header-title {
    opacity: 1;
  }
}
.en-features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  grid-auto-rows: 30rem;
}
@media only screen and (max-width: 1200px) {
  .en-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 1024px) {
  .en-features__grid {
    grid-auto-rows: auto;
    grid-template-columns: 1fr;
  }
}
@media only screen and (max-width: 500px) {
  .en-features__grid {
    display: none;
  }
}
.en-features__item {
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  background-color: rgb(var(--en-bg-rgb));
  box-shadow: 0px 8px 16px rgba(11, 25, 29, 0.7);
}
@media only screen and (min-width: 501px) and (max-width: 1024px) {
  .en-features__item {
    justify-content: center;
    align-items: flex-end;
    min-height: 17rem;
  }
  .en-features__item:nth-child(even) {
    align-items: flex-start;
  }
  .en-features__item:nth-child(even) .en-features__bg {
    left: initial;
    right: 0;
  }
  .en-features__item:nth-child(even) .en-features__bg-before {
    right: initial;
    left: 0;
    background: linear-gradient(-90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
  }
}
@media only screen and (max-width: 500px) {
  .en-features__item {
    min-height: 30rem;
  }
}
.en-features__section {
  position: relative;
  padding: 10rem 1rem 2rem;
}
@media only screen and (min-width: 501px) and (max-width: 1024px) {
  .en-features__section {
    padding: 2rem 3rem;
    max-width: 55%;
  }
}
.en-features__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.en-features__bg-after {
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 11.46%, rgba(var(--en-bg-rgb), 0.38) 40.63%, rgba(var(--en-bg-rgb), 0.65) 63.02%, rgba(var(--en-bg-rgb), 0.95) 85.42%, rgba(var(--en-bg-rgb), 1) 100%);
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
}
@media only screen and (min-width: 501px) and (max-width: 1024px) {
  .en-features__bg {
    width: 65%;
    height: 100%;
    bottom: 0;
  }
  .en-features__bg-after {
    display: none;
  }
  .en-features__bg-before {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    height: 100%;
    width: 60%;
    background: linear-gradient(90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 11.46%, rgba(var(--en-bg-rgb), 0.38) 40.63%, rgba(var(--en-bg-rgb), 0.65) 63.02%, rgba(var(--en-bg-rgb), 0.95) 85.42%, rgba(var(--en-bg-rgb), 1) 100%);
  }
}
.en-features__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 0.8rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  position: relative;
  z-index: 6;
}
.en-features__text {
  line-height: 1.4em !important;
  color: var(--en-muted-text-color);
  margin: 0;
  position: relative;
  z-index: 6;
}
.en-features__text span {
  padding-top: 0.5rem;
  display: inline-block;
}
.en-changer {
  position: relative;
  height: 48rem;
  max-width: 2560px;
  margin: 0 auto;
  background-color: rgb(var(--en-bg-rgb));
}
@media only screen and (max-width: 760px) {
  .en-changer {
    height: auto;
  }
}
.en-changer__swiper {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .en-changer__swiper {
    position: relative;
    height: 36rem;
  }
}
.en-changer .swiper-button-prev,
.en-changer .swiper-button-next {
  cursor: pointer;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 50%;
  background: #0d191e;
  opacity: 0.6;
  transition: all 0.2s ease;
}
.en-changer .swiper-button-prev::after,
.en-changer .swiper-button-next::after {
  font-size: 1.3rem;
}
.en-changer .swiper-button-prev:hover,
.en-changer .swiper-button-next:hover,
.en-changer .swiper-button-prev:focus,
.en-changer .swiper-button-next:focus {
  opacity: 0.8;
}
.en-changer .swiper-button-prev.swiper-button-disabled,
.en-changer .swiper-button-next.swiper-button-disabled {
  opacity: 0;
}
.en-changer .swiper-button-next {
  right: 2.5rem;
}
@media only screen and (max-width: 500px) {
  .en-changer .swiper-button-next {
    right: 1rem;
  }
}
.en-changer .swiper-button-prev {
  left: 2.5rem;
}
@media only screen and (max-width: 500px) {
  .en-changer .swiper-button-prev {
    left: 1rem;
  }
}
.en-changer__tabs {
  z-index: 1;
  position: absolute;
  bottom: 3rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
@media only screen and (max-width: 760px) {
  .en-changer__tabs {
    bottom: 1rem;
  }
}
.en-changer__tab {
  cursor: pointer;
  padding: 0.5rem;
  text-transform: uppercase;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  margin-right: 2rem;
}
.en-changer__tab::after {
  content: "";
  pointer-events: none;
  height: 5px;
  width: 5px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  right: -1.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}
.en-changer__tab:last-child::after {
  display: none;
}
.en-changer__tab.m--active,
.en-changer__tab:hover {
  color: #ffd482;
  border-color: #ffd482;
}
@media only screen and (max-width: 760px) {
  .en-changer__tab {
    height: 8px;
    width: 8px;
    border-radius: 50%;
    padding: 0;
    margin-right: 0;
    border: 1px solid rgba(255, 255, 255, 0.5);
  }
  .en-changer__tab__text {
    display: none;
  }
  .en-changer__tab::after {
    display: none;
  }
  .en-changer__tab.m--active,
  .en-changer__tab:hover {
    background-color: #fff;
    border-color: #fff;
  }
}
.en-changer__container {
  z-index: 6 !important;
  padding-top: 6rem;
}
.en-changer__container.m--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 1600px) {
  .en-changer__container {
    padding-top: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .en-changer__container {
    max-width: calc(100% - 8rem) !important;
  }
}
@media only screen and (max-width: 760px) {
  .en-changer__container {
    padding: 2rem 0;
    max-width: 100% !important;
  }
}
.en-changer__content {
  min-height: 29rem;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .en-changer__content {
    padding: 0 3rem;
  }
}
.en-changer__header-title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 2.4rem;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
}
.en-changer__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 1.2rem;
}
.en-changer__text {
  margin: 0 0 1.5rem;
  max-width: 28rem;
  opacity: 0.9;
}
@media only screen and (max-width: 760px) {
  .en-changer__text {
    max-width: unset;
  }
}
.en-changer__delimeter {
  height: 1.6rem;
  width: 1.6rem;
  margin: 1.2rem 0 3rem;
  background-image: url(/modern-3/7fe109922006d0dba9d1.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .en-changer__delimeter {
    margin: 1rem 0 2.6rem;
  }
}
@media only screen and (max-width: 760px) {
  .en-changer__delimeter {
    display: none;
  }
}
.en-changer__current {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 6;
  gap: 0.5rem;
  padding: 0 1.5rem;
}
.en-changer__current-info {
  display: flex;
  align-items: center;
  opacity: 0.8;
  gap: 1rem;
}
@media only screen and (max-width: 500px) {
  .en-changer__current-info {
    flex-direction: column;
  }
}
.en-changer__current-year {
  border-radius: 4px;
  border: 1px solid #fff;
  padding: 1px 3px;
  line-height: 1em !important;
}
.en-changer__current-title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
}
.en-changer__current-desc {
  color: var(--en-muted-text-color);
}
.en-changer__nav {
  position: absolute;
  width: 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  top: 6rem;
  bottom: 4rem;
  z-index: 6;
}
@media only screen and (max-width: 1600px) {
  .en-changer__nav {
    top: 4rem;
  }
}
@media only screen and (max-width: 1024px) {
  .en-changer__nav {
    bottom: 3rem;
  }
}
@media only screen and (max-width: 760px) {
  .en-changer__nav {
    display: none;
  }
}
.en-changer__nav.m--prev {
  left: calc((100vw - 1600px - 6rem) / 4);
}
@media only screen and (max-width: 1920px) {
  .en-changer__nav.m--prev {
    left: calc((100vw - 1408px - 6rem) / 4);
  }
}
@media only screen and (max-width: 1600px) {
  .en-changer__nav.m--prev {
    left: calc((100vw - 85vw - 6rem) / 4);
  }
}
.en-changer__nav.m--next {
  right: calc((100vw - 1600px - 6rem) / 4);
}
@media only screen and (max-width: 1920px) {
  .en-changer__nav.m--next {
    right: calc((100vw - 1408px - 6rem) / 4);
  }
}
@media only screen and (max-width: 1600px) {
  .en-changer__nav.m--next {
    right: calc((100vw - 85vw - 6rem) / 4);
  }
}
.en-changer__dot {
  background-color: #fff;
  border-radius: 50%;
  height: 5px;
  width: 5px;
  flex-shrink: 0;
  margin: 0.5rem 0;
}
.en-changer__dot.m--muted {
  opacity: 0.7;
}
.en-changer__line {
  width: 1px;
  flex-shrink: 0;
  flex: 1;
  background-color: rgba(255, 255, 255, 0.2);
}
.en-changer__handle {
  cursor: pointer;
  border-radius: 50%;
  background-color: rgba(13, 25, 30, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.4rem;
  width: 2.4rem;
}
.en-changer__handle::before {
  content: '';
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  opacity: 0.6;
  position: relative;
  transition: opacity 0.2s ease;
  height: 1.3rem;
  width: 0.7rem;
}
.en-changer__handle.m--prev::before {
  background-image: url(/modern-3/4425d49597c0feaeb3eb.svg);
  left: -1px;
}
.en-changer__handle.m--next::before {
  background-image: url(/modern-3/21b6857e495bdfb8a7c3.svg);
  right: -1px;
}
.en-changer__handle:hover,
.en-changer__handle:focus {
  background-color: rgba(13, 25, 30, 0.5);
}
.en-changer__handle:hover::before,
.en-changer__handle:focus::before {
  opacity: 1;
}
.en-changer__handle:active {
  background-color: rgba(13, 25, 30, 0.8);
}
.en-changer__fader {
  position: absolute;
  inset: 0;
  background: radial-gradient(85.13% 131.63% at 69.58% 0%, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.02) 11%, rgba(var(--en-bg-rgb), 0.35) 34%, rgba(var(--en-bg-rgb), 0.71) 69%, rgba(var(--en-bg-rgb), 0.96) 94%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-changer__bottom-fader {
  display: none;
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  height: 7.5rem;
  width: 100%;
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 0.05) 11.46%, rgba(var(--en-bg-rgb), 0.380208) 40.63%, rgba(var(--en-bg-rgb), 0.65) 63.02%, rgba(var(--en-bg-rgb), 0.95) 85.42%, rgba(var(--en-bg-rgb), 1) 100%);
}
@media only screen and (max-width: 760px) {
  .en-changer__bottom-fader {
    display: block;
  }
}
.en-sysreq {
  padding: 5.2rem 0 6.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 760px) {
  .en-sysreq {
    padding: 3rem 0 3.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-sysreq {
    padding: 1rem 0 2.5rem;
  }
}
.en-sysreq__header-title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 1.5rem;
  text-align: center;
  text-transform: uppercase;
}
.en-sysreq__block {
  margin-bottom: 5rem;
  border: 0.25px solid rgba(255, 255, 255, 0.1);
  display: flex;
}
.en-sysreq__block.m--shadow {
  max-width: 42rem;
  background-color: rgba(18, 33, 38, 0.4);
  box-shadow: 0px 10px 20px rgba(6, 12, 22, 0.2);
}
@media only screen and (max-width: 500px) {
  .en-sysreq__block {
    flex-direction: column;
  }
}
.en-sysreq__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}
@media only screen and (max-width: 1600px) {
  .en-sysreq__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-sysreq__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-sysreq__title {
    font-size: 22px;
  }
}
.en-sysreq__list {
  padding: 1.5rem 2.5rem;
  width: 50%;
  flex: 1;
}
.en-sysreq__list:first-child {
  border-right: 0.25px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 500px) {
  .en-sysreq__list {
    width: 100%;
    padding: 1rem;
  }
  .en-sysreq__list:first-child {
    border-right: none;
    border-bottom: 0.25px solid rgba(255, 255, 255, 0.1);
  }
}
.en-sysreq__list p {
  font-family: 'Fira Sans', sans-serif;
  margin: 0.6rem 0;
}
.en-sysreq__list span {
  color: rgba(255, 255, 255, 0.62);
}
.en-bottom {
  position: relative;
  padding-top: 1rem;
}
.en-bottom-logo {
  background-image: url(/modern-3/e39a2c259a6870922278.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 3.8rem;
  width: 5.4rem;
  flex-shrink: 0;
}
@media only screen and (max-width: 1024px) {
  .en-bottom-logo {
    display: none;
  }
}
.en-bottom-menu {
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-bottom-menu__wrapper {
  border-top: 1px solid var(--en-muted-border-color);
  padding: 2rem 0 5rem;
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .en-bottom-menu__wrapper {
    gap: 2rem;
    padding: 0 0 2rem;
    flex-direction: column;
    flex-wrap: wrap;
  }
}
.en-footer-nav {
  flex: 1;
  display: flex;
  gap: 3rem;
}
@media only screen and (max-width: 1024px) {
  .en-footer-nav {
    order: 2;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 760px) {
  .en-footer-nav {
    gap: 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-footer-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.en-footer-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.en-footer-nav__item {
  display: flex;
  align-items: center;
}
.en-footer-nav__item:first-child {
  padding-bottom: 0.5rem;
}
.en-footer-nav__header {
  font-size: 16px;
  line-height: 24px;
  color: var(--en-text-color);
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  transition: all 0.2s ease;
}
.en-footer-nav__header.m--active,
.en-footer-nav__header:hover,
.en-footer-nav__header:focus {
  text-decoration: underline;
}
.en-footer-nav__header:active {
  opacity: 0.8;
}
.en-footer-nav__link {
  font-size: 14px;
  line-height: 20px;
  padding: 0.5rem 0;
  color: rgba(255, 255, 255, 0.6);
  display: block;
  text-decoration: none;
  transition: all 0.2s ease;
}
.en-footer-nav__link.m--active,
.en-footer-nav__link:hover,
.en-footer-nav__link:focus {
  color: #fff;
}
.en-footer-nav__link:active {
  color: rgba(255, 255, 255, 0.7);
}
.en-socials {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media only screen and (max-width: 1024px) {
  .en-socials {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem 0 1.5rem;
    justify-content: center;
    border-bottom: 1px solid var(--en-muted-border-color);
  }
}
@media only screen and (max-width: 500px) {
  .en-socials {
    flex-direction: column;
  }
}
.en-socials__title {
  text-transform: uppercase;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
}
@media only screen and (max-width: 1024px) {
  .en-socials__title {
    flex-shrink: 1;
    width: 100%;
  }
}
.en-socials__links {
  display: flex;
}
.en-socials__link {
  cursor: pointer;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 2.5rem;
  width: 2.5rem;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.en-socials__link.m--nav {
  height: 2rem;
  width: 2rem;
  opacity: 1 !important;
  margin-right: 4px;
}
@media only screen and (max-width: 1024px) {
  .en-socials__link {
    height: 3rem;
    width: 3rem;
  }
  .en-socials__link.m--nav {
    height: 2.5rem;
    width: 2.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-socials__link {
    height: 3rem;
    width: 3rem;
  }
}
.en-socials__link.m--fb {
  background-image: url(/modern-3/e823c638507551c09181.svg);
}
.en-socials__link.m--tw {
  background-image: url(/modern-3/ac3d210b1f55c1346e8d.svg);
}
.en-socials__link.m--tg {
  background-image: url(/modern-3/2a94c51adc65a9e9618a.svg);
}
.en-socials__link.m--vk {
  background-image: url(/modern-3/a27d92ab9253982b9b1a.svg);
}
.en-socials__link.m--yt {
  background-image: url(/modern-3/8dcc104092bcb95018c6.svg);
}
.en-socials__link.m--in {
  background-image: url(/modern-3/0f27fce6a2adfedcb81e.svg);
}
.en-socials__link.m--dc {
  background-image: url(/modern-3/0975ac7952f5cd060fbc.svg);
}
.en-socials__link.m--forum {
  background-image: url(/modern-3/516193f1f76869955aca.svg);
}
.en-socials__link.m--mods {
  background-image: url(/modern-3/a56d8f8ef63db6d8209f.svg);
}
.en-socials__link:hover,
.en-socials__link:focus {
  opacity: 1;
}
.en-socials__link:active {
  opacity: 0.8;
}
.en-socials__forum {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .en-socials__forum {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    opacity: 0.6;
    border-radius: 3px;
    padding: 0.3rem 0.8rem;
    transition: all 0.2s ease;
  }
  .en-socials__forum:hover,
  .en-socials__forum:focus {
    text-decoration: none;
    opacity: 1;
  }
}
.en-footer {
  display: flex;
  padding: 1.5rem;
  gap: 1.5rem;
  flex-direction: column;
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.en-footer__incubator {
  margin-right: 1.2rem;
  font-weight: 500;
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.en-footer__logos {
  display: flex;
  gap: 0.5rem;
}
.en-footer__gaijin-logo {
  height: 2.2rem;
  width: 1.9rem;
  flex-shrink: 0;
  background-image: url(/modern-3/5488c248524c8d498833.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.en-footer__darkflow {
  height: 3rem;
  width: 8rem;
  flex-shrink: 0;
  background-image: url(/modern-3/2dcd9b068632bd891e57.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 0.3rem;
  opacity: 0.7;
}
.en-footer__pixstorm {
  height: 3rem;
  width: 8rem;
  flex-shrink: 0;
  background-image: url(/modern-3/6ac59504f4506d405f83.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position-y: 0.3rem;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.en-footer__pixstorm:hover,
.en-footer__pixstorm:focus {
  opacity: 1;
}
.en-footer__rates,
.en-footer__logos {
  min-width: 300px;
}
@media only screen and (max-width: 1200px) {
  .en-footer__rates,
  .en-footer__logos {
    min-width: auto;
  }
}
.en-footer__rates {
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
}
@media only screen and (max-width: 500px) {
  .en-footer__rates {
    justify-content: center;
  }
}
.en-footer__rate {
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-left: 0.5rem;
  height: 3rem;
  width: 3rem;
}
.en-footer__rate:first-child {
  margin-left: 0;
}
.en-footer__rate.m--age {
  height: 2rem;
  width: 2rem;
  background-image: url(/modern-3/eeec196d0702157c34d2.svg);
  opacity: 0.7;
}
.en-footer__rate.m--esrb {
  background-image: url(/modern-3/1aa485ea3ea7c1269161.svg);
}
.en-footer__rate.m--pegi {
  background-image: url(/modern-3/c452db7cf55804324d7a.svg);
}
.en-footer__rate.m--usk {
  background-image: url(/modern-3/8e7ed3851123fcc410c2.svg);
}
.en-footer__main {
  flex: 1;
  width: 100%;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .en-footer__main {
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 500px) {
  .en-footer__main {
    align-items: center;
    flex-direction: column;
  }
}
.en-footer__nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.en-footer__link {
  z-index: 1;
  text-transform: uppercase;
  text-decoration: underline !important;
  margin: 0 0.8rem;
}
.en-footer__link.m--icon,
.en-footer__link.m--sysreq {
  text-transform: initial;
  display: flex;
  align-items: center;
}
.en-footer__link.m--icon::after {
  content: '';
  height: 7px;
  width: 7px;
  margin-left: 0.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/modern-3/d4b435506dbff2a3ad79.svg);
  flex-shrink: 0;
}
.en-footer__link.m--sysreq {
  text-decoration: none !important;
}
@media only screen and (max-width: 1200px) {
  .en-footer__link.m--sysreq.m--hide-laptop {
    display: none;
  }
}
.en-footer__link.m--sysreq.m--bordered {
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.en-footer__link.m--sysreq::before {
  content: '';
  height: 1rem;
  width: 1rem;
  margin-right: 0.2rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/modern-3/fa37fac64b0b80137d92.svg);
  flex-shrink: 0;
}
.en-footer__copyright {
  opacity: 0.6;
  text-align: center;
  max-width: 40rem;
}
@media only screen and (max-width: 760px) {
  .en-footer__copyright {
    flex: 1;
    min-width: 100%;
    order: 3;
  }
}
.en-footer__link,
.en-footer a {
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  opacity: 0.7;
  transition: all 0.2s ease;
}
.en-footer__link:hover,
.en-footer a:hover,
.en-footer__link:focus,
.en-footer a:focus {
  opacity: 1;
}
.en-footer__link:active,
.en-footer a:active {
  opacity: 0.8;
}
.en-socials__forum.m--away::after,
.en-footer-nav__item.m--away::after {
  content: '';
  background-image: url(/modern-3/d4b435506dbff2a3ad79.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
  margin-left: 0.4rem;
  height: 7px;
  width: 7px;
}
.en-bottom-cta {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin: 7.5rem 0;
  gap: 1.5rem;
  min-height: 28rem;
}
@media only screen and (max-width: 850px) {
  .en-bottom-cta {
    display: flex;
    flex-direction: column;
    min-height: unset;
  }
}
@media only screen and (max-width: 760px) {
  .en-bottom-cta {
    margin: 4rem 0;
  }
}
@media only screen and (max-width: 500px) {
  .en-bottom-cta {
    margin: 3rem 0;
  }
  .en-bottom-cta .en-play-button {
    width: 100%;
  }
}
.en-bottom-cta__bg {
  position: absolute;
  inset: 0;
}
@media only screen and (min-width: 500px) and (max-width: 850px) {
  .en-bottom-cta__bg.m--shop {
    left: 60%;
  }
  .en-bottom-cta__bg.m--shop::before {
    content: '';
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    background: linear-gradient(90deg, #202A33 0%, rgba(32, 42, 51, 0.92) 10.94%, rgba(32, 42, 51, 0.65) 35.42%, rgba(32, 42, 51, 0.26) 63.54%, rgba(32, 42, 51, 0.03) 89.58%, rgba(32, 42, 51, 0) 100%);
  }
}
.en-bottom-cta__bg-img {
  display: block;
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: bottom;
}
.en-bottom-cta__bg-img.m--top {
  object-position: top;
}
.en-bottom-cta__shop,
.en-bottom-cta__block {
  overflow: hidden;
  position: relative;
  border: 0.25px solid;
  box-shadow: 0px 23px 48px rgba(6, 12, 22, 0.44);
  border-radius: 3px;
  background-color: #202A33;
  flex: 1;
}
.en-bottom-cta__block {
  grid-column-end: span 8;
  padding: 2.4rem 1.5rem 2.4rem 4.3rem;
  border-color: var(--en-muted-border-color);
}
@media only screen and (max-width: 1200px) {
  .en-bottom-cta__block {
    padding: 2rem;
    grid-column-end: span 7;
  }
}
@media only screen and (max-width: 500px) {
  .en-bottom-cta__block {
    padding: 1.5rem;
  }
}
.en-bottom-cta__content {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  position: relative;
  z-index: 2;
}
.en-bottom-cta__content.m--shop {
  gap: 0.8rem;
}
@media only screen and (min-width: 500px) and (max-width: 850px) {
  .en-bottom-cta__content.m--shop {
    max-width: 60%;
  }
}
.en-bottom-cta__shop {
  grid-column-end: span 4;
  border-color: var(--en-accent-color);
  display: flex;
  align-items: flex-end;
  padding: 2.4rem;
}
.en-bottom-cta__shop .en-play-button {
  width: 100%;
}
@media only screen and (max-width: 1200px) {
  .en-bottom-cta__shop {
    padding: 2rem;
    grid-column-end: span 5;
  }
}
@media only screen and (min-width: 500px) and (max-width: 850px) {
  .en-bottom-cta__shop .en-play-button {
    width: auto;
  }
}
@media only screen and (max-width: 500px) {
  .en-bottom-cta__shop {
    padding: 14rem 1.5rem 1.5rem;
  }
}
.en-bottom-cta__shop-title {
  text-transform: uppercase;
  color: #FECE85;
  margin: 0;
}
.en-bottom-cta__shop-text {
  margin: 0;
  color: var(--en-muted-text-color);
}
.en-bottom-cta__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  max-width: 27rem;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .en-bottom-cta__title {
    max-width: unset;
  }
}
.en-bottom-cta__text {
  max-width: 28rem;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .en-bottom-cta__text {
    max-width: unset;
  }
}
.en-bottom-cta__hint {
  font-family: 'PT Sans', sans-serif;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.5rem;
  font-size: 16px;
}
@media only screen and (max-width: 500px) {
  .en-bottom-cta__hint {
    font-size: 14px;
    text-align: center;
  }
}
.en-bottom-cta__buttons {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 500px) {
  .en-bottom-cta__buttons {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.en-bottom-cta__sysreq {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 500px) {
  .en-bottom-cta__sysreq {
    display: grid;
    grid-template-columns: 1fr;
  }
}
.en-news-main {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.en-news-main__label {
  font-size: 0.9rem;
  line-height: 1.2rem;
  text-transform: uppercase;
}
.en-news-main__title-link {
  display: inline-block;
  text-decoration: none;
  color: #fff;
}
.en-news-main__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  font-size: 2.8rem;
  line-height: 3.2rem;
  margin: 0.5rem 0;
  max-width: 70%;
  text-transform: uppercase;
  text-wrap: balance;
}
@media only screen and (max-width: 760px) {
  .en-news-main__title {
    font-size: 2.4rem;
    line-height: 2.8rem;
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .en-news-main__title {
    font-size: 2rem;
    line-height: 2.4rem;
  }
}
.en-news-main__info {
  margin-top: 1.6rem;
  display: flex;
}
.en-news-main__date {
  height: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  display: flex;
  align-items: center;
}
.en-news-main__text {
  margin: 1.2rem 0;
  max-width: 34.5rem;
  color: rgba(255, 255, 255, 0.82);
}
.en-news-tag {
  position: relative;
  z-index: 1;
  text-transform: lowercase;
  background-color: #7B3DFF;
  border-radius: 2px;
  padding: 0px 5px 1px;
  text-decoration: none !important;
}
.en-news-tag.m--large {
  text-transform: uppercase;
  font-size: 1rem;
}
.en-news-tag.m--orange {
  background-color: #ba5023;
  color: rgba(255, 255, 255, 0.9) !important;
}
.en-news-tag.m--purple {
  background-color: #7b3dff;
  color: rgba(255, 255, 255, 0.9) !important;
}
.en-news-tag.m--yellow {
  background-color: #ffc93d;
  color: rgb(var(--en-bg-rgb)) !important;
}
.en-news-filter {
  display: flex;
  flex-wrap: wrap;
  margin: 0.8rem -0.8rem;
}
.en-news-filter__item {
  cursor: pointer;
  font-size: 0.85rem;
  line-height: 1.2rem;
  padding: 0.8rem;
  flex-shrink: 0;
  text-transform: uppercase;
  color: #fff;
  transition: all 0.2s ease;
  text-decoration: none !important;
}
.en-news-filter__item.m--active {
  color: #ffb84f;
  pointer-events: none;
}
.en-news-filter__item:hover,
.en-news-filter__item:focus {
  color: #ffb84f;
}
.en-news-filter__item:active {
  opacity: 0.8;
}
.en-news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.6rem;
  grid-auto-rows: 8.8rem;
  grid-auto-flow: row dense;
  margin-bottom: 4rem;
}
@media only screen and (max-width: 1024px) {
  .en-news-grid {
    gap: 1.2rem;
  }
}
@media only screen and (max-width: 800px) {
  .en-news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 600px) {
  .en-news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 400px) {
  .en-news-grid {
    grid-auto-rows: 7.5rem;
  }
}
.en-news-more {
  text-align: center;
  padding: 1.6rem 0;
}
.en-news-item {
  position: relative;
  text-decoration: none;
  background-color: rgb(var(--en-bg-light-rgb));
  color: #fff;
  display: flex;
  overflow: hidden;
  grid-row-end: span 2;
  transition: transform 0.2s ease;
}
@media only screen and (max-width: 400px) {
  .en-news-item {
    grid-column-end: span 2;
  }
}
.en-news-item::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2.4rem;
  z-index: 2;
  background: linear-gradient(180deg, rgba(var(--en-bg-light-rgb), 0) 0%, rgba(var(--en-bg-light-rgb), 0.05) 11.46%, rgba(var(--en-bg-light-rgb), 0.33) 35.94%, rgba(var(--en-bg-light-rgb), 0.72) 65.1%, rgba(var(--en-bg-light-rgb), 0.95) 92.71%, rgba(var(--en-bg-light-rgb), 1) 100%);
}
.en-news-item__article {
  padding: 8rem 0.8rem 0;
  display: block;
  width: 100%;
  position: relative;
  z-index: 1;
}
.en-news-item__info {
  margin-bottom: 0.4rem;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 4;
}
.en-news-item__date {
  font-size: 14px;
  line-height: 20px;
  flex-shrink: 0;
}
.en-news-item__title {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  text-transform: uppercase;
}
@media only screen and (max-width: 1600px) {
  .en-news-item__title {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-news-item__title {
    font-size: 16px;
    line-height: 24px;
  }
}
.en-news-item__text {
  margin: 0.4rem 0 0;
  color: rgba(255, 255, 255, 0.64);
}
.en-news-item__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 9.2rem;
  width: 100%;
  background-image: url(/modern-3/425aa65cd0cfcca17fac.jpg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.en-news-item__bg::after {
  content: '';
  display: block;
  position: absolute;
  height: 2.7rem;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(var(--en-bg-light-rgb), 0) 0%, rgba(var(--en-bg-light-rgb), 0.05) 11.46%, rgba(var(--en-bg-light-rgb), 0.33) 35.94%, rgba(var(--en-bg-light-rgb), 0.72) 65.1%, rgba(var(--en-bg-light-rgb), 0.95) 92.71%, rgba(var(--en-bg-light-rgb), 1) 100%);
}
.en-news-item.m--large {
  grid-column-end: span 2;
  display: flex;
  align-items: flex-end;
}
.en-news-item.m--large.m--orange::before {
  border-bottom: 2px solid #ba5023;
}
.en-news-item.m--large.m--yellow::before {
  border-bottom: 2px solid #ffc93d;
}
.en-news-item.m--large.m--purple::before {
  border-bottom: 2px solid #7b3dff;
}
.en-news-item.m--large::after {
  display: none;
}
.en-news-item.m--large .en-news-item__article {
  padding: 1.2rem;
}
.en-news-item.m--large .en-news-item__title {
  font-size: 32px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .en-news-item.m--large .en-news-item__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-news-item.m--large .en-news-item__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-news-item.m--large .en-news-item__title {
    font-size: 22px;
  }
}
.en-news-item.m--large .en-news-item__date {
  font-size: 16px;
  line-height: 24px;
}
.en-news-item.m--large .en-news-item__text {
  display: none;
}
.en-news-item.m--large .en-news-item__bg {
  height: 100%;
  bottom: 0;
}
.en-news-item.m--large .en-news-item__bg::after {
  height: 10rem;
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-news-item.m--large .en-news-tag {
  text-transform: uppercase;
  padding: 0.1rem 0.4rem;
}
.en-article {
  padding: 1.5rem 0;
}
.en-article .e-iframe__wrapper {
  position: relative;
  width: 100%;
  padding-bottom: calc(100% * 9 / 16);
}
.en-article .e-iframe__wrapper iframe {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  width: 100%;
}
.en-article .e-set .t-strikethrough-text {
  text-decoration: line-through !important;
}
.en-article .e-set__title {
  font-size: 32px;
  line-height: 1em;
}
@media only screen and (max-width: 1600px) {
  .en-article .e-set__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-article .e-set__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-article .e-set__title {
    font-size: 22px;
  }
}
.en-article .e-set__img {
  margin: 1rem 0;
}
.en-article .e-set__img img {
  display: block;
  object-fit: contain;
  max-width: 100%;
  max-height: 10rem;
  width: auto;
}
.en-article .e-set__content-caption {
  font-size: 1.3rem;
}
.en-article .e-set__buttons {
  display: flex;
  list-style: none;
  align-items: center;
  padding: 0;
}
.en-article .e-set__buttons-price {
  font-size: 1.3rem;
  font-weight: 500;
  margin-right: 1rem;
}
.en-article .e-set__buttons-link {
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1.6rem;
  text-decoration: none !important;
  color: #000 !important;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  background-color: #e78b37;
  display: inline-flex;
  align-items: center;
  transition: background-color 0.2s ease;
}
.en-article .e-set__buttons-link:hover,
.en-article .e-set__buttons-link:focus {
  background-color: #ffb84f;
}
.en-article .e-set__buttons-link:active {
  background-color: #e78b37;
}
.en-article__container {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 244, 207, 0.05);
  padding-right: 2rem;
  padding-left: 2rem;
}
.en-article__header {
  height: 2.4rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: inline-flex;
  position: absolute;
  top: -1px;
  left: -1px;
}
.en-article__header-link {
  cursor: pointer;
  min-width: 2.4rem;
  line-height: 1.1rem;
  padding: 0 0.8rem;
  text-decoration: none;
  color: #ffb84f;
  transition: all 0.2s ease;
  height: 100%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}
.en-article__header-link:last-child {
  border-right: 0;
}
.en-article__header-link:hover,
.en-article__header-link:focus {
  background-color: rgba(13, 25, 30, 0.3);
}
.en-article__header-link:active {
  background-color: rgba(13, 25, 30, 0.74);
}
.en-article__header-link::before {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  flex-shrink: 0;
  margin-right: 0.4rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media only screen and (max-width: 1024px) {
  .en-article__header-link::before {
    width: 1rem;
    height: 1rem;
  }
}
.en-article__header-link.m--home::before {
  background-image: url(/modern-3/c3fa4b919ad73c424aa0.svg);
}
.en-article__header-link.m--back::before {
  background-image: url(/modern-3/9080ac17a4449b602c25.svg);
}
.en-article__header-link.m--icon-only {
  padding: 0;
}
.en-article__header-link.m--icon-only::before {
  height: 1rem;
  width: 1rem;
  margin-right: 0;
}
.en-article__wrapper {
  max-width: 46rem;
  margin: 0 auto;
  padding-top: 4rem;
}
@media only screen and (max-width: 1600px) {
  .en-article__wrapper {
    max-width: 100%;
  }
}
.en-article__content {
  font-size: 16px;
  line-height: 24px;
  color: #daddde;
  padding-bottom: 2rem;
}
.en-article__content hr {
  margin: 1.8rem 0;
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.en-article__content hr.m--decorate {
  overflow: visible;
  position: relative;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.en-article__content hr.m--decorate::after {
  content: '';
  background-color: #344348;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/modern-3/e990a0e5f21b5e9bd10a.svg);
  max-width: 380px;
  height: 1rem;
  width: 2rem;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.en-article__content a:not(.en-play-button) {
  cursor: pointer;
  text-decoration: underline;
  color: #ffb84f;
  transition: all 0.2s ease;
}
.en-article__content a:not(.en-play-button):hover,
.en-article__content a:not(.en-play-button):focus {
  color: #ffdf8b;
}
.en-article__content a:not(.en-play-button):active {
  color: #e78b37;
}
.en-article__content .en-play-button {
  line-height: 1.8rem;
  padding: 0 3rem;
}
.en-article__content table {
  border-collapse: collapse;
  border-spacing: 0;
  border: 1px solid #8d7e58;
}
.en-article__content table p {
  margin: 0;
}
.en-article__content table td,
.en-article__content table th {
  padding: 5px;
  text-align: center;
  border: 1px solid #8d7e58;
}
.en-article__content h1,
.en-article__content h2,
.en-article__content h3 {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
}
.en-article__content h2 {
  font-size: 40px;
  line-height: 1em;
  text-transform: uppercase;
  color: #DADDDE;
  margin-top: 1.1em;
  margin-bottom: 0.6em;
}
@media only screen and (max-width: 1600px) {
  .en-article__content h2 {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-article__content h2 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 500px) {
  .en-article__content h2 {
    font-size: 24px;
  }
}
.en-article__content h3 {
  font-size: 32px;
  line-height: 1em;
  font-weight: bold;
  margin-bottom: 0.6em;
  margin-top: 1.4em;
}
@media only screen and (max-width: 1600px) {
  .en-article__content h3 {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-article__content h3 {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-article__content h3 {
    font-size: 22px;
  }
}
.en-article__content p {
  font-size: 20px;
  line-height: 32px;
  margin-bottom: 0.7em;
  margin-top: 1em;
}
@media only screen and (max-width: 1600px) {
  .en-article__content p {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-article__content p {
    font-size: 16px;
    line-height: 24px;
  }
}
.en-article__content li {
  font-size: 20px;
  line-height: 32px;
}
@media only screen and (max-width: 1600px) {
  .en-article__content li {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-article__content li {
    font-size: 16px;
    line-height: 24px;
  }
}
.en-article__content img:not(.gj-captcha__image) {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.en-article__info {
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  gap: 1rem;
  display: flex;
  align-items: center;
}
.en-article__divider {
  width: 1px;
  height: 1.6rem;
  margin: 0 0.8rem 0 1rem;
  background-color: rgba(255, 255, 255, 0.14);
}
.en-article__socials {
  display: flex;
}
.en-article__social {
  cursor: pointer;
  height: 2rem;
  width: 2rem;
  margin-right: 0.4rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.en-article__social:hover,
.en-article__social:focus {
  opacity: 1;
}
.en-article__social:active {
  opacity: 0.8;
}
.en-article__social.m--dc {
  background-image: url(/modern-3/9eb99a49b7475008115a.svg);
}
.en-article__social.m--vk {
  background-image: url(/modern-3/90354e18e154026a454f.svg);
}
.en-article__social.m--fb {
  background-image: url(/modern-3/b30cce35c59dda52be9a.svg);
}
.en-article__date {
  color: rgba(255, 255, 255, 0.43);
}
.en-article__title {
  font-size: 64px;
  line-height: 1em;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}
@media only screen and (max-width: 1600px) {
  .en-article__title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-article__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1024px) {
  .en-article__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 500px) {
  .en-article__title {
    font-size: 32px;
  }
}
.m--results .en-article__container {
  background: #344348;
}
.m--results img {
  width: 100%;
  display: block;
}
.en-new-enlisted {
  --en-bg-rgb: 52, 67, 72;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 244, 207, 0.05);
  padding: 4rem 0 0 !important;
  margin-bottom: 3rem !important;
}
.en-new-enlisted h1,
.en-new-enlisted h2,
.en-new-enlisted h3 {
  color: white;
}
.en-new-enlisted__container {
  max-width: 46rem;
  margin: 0 auto;
}
@media only screen and (max-width: 1600px) {
  .en-new-enlisted__container {
    padding: 0 2rem;
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .en-new-enlisted__container {
    padding: 0 1rem;
  }
}
.en-header.m--new-enlisted {
  height: auto;
  padding: 8rem 2rem 12rem;
}
@media only screen and (max-width: 500px) {
  .en-header.m--new-enlisted {
    padding: 2rem 1rem 12rem;
  }
}
.en-main-kv-block {
  position: relative;
  margin-top: 3rem;
}
@media only screen and (max-width: 760px) {
  .en-main-kv-block .en-bg__bottom-fader {
    height: 80%;
  }
  .en-main-kv-block .en-bg__right-fader,
  .en-main-kv-block .en-bg__left-fader {
    width: 15%;
  }
}
.en-main-kv-block__img {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media only screen and (max-width: 760px) {
  .en-main-kv-block__img {
    aspect-ratio: 1.33333333;
  }
}
.en-main-kv-block__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  width: 100%;
}
.en-main-kv-block__divider-line {
  height: 1px;
  flex-shrink: 0;
  background-color: rgba(255, 255, 255, 0.1);
  max-width: 10rem;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .en-main-kv-block__divider-line {
    max-width: 7rem;
  }
}
.en-main-kv-block__divider-icon {
  height: 9px;
  width: 6px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/modern-3/e990a0e5f21b5e9bd10a.svg);
}
.en-main-kv-block__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
  inset: 0;
  z-index: 20;
  padding: 2rem;
}
@media only screen and (max-width: 500px) {
  .en-main-kv-block__content {
    position: relative;
    padding: 0 1rem 2rem;
    margin-top: -6rem;
  }
}
.en-main-kv-block__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 96px;
  line-height: 1em;
  text-transform: uppercase;
  margin: 1.5rem 0;
}
@media only screen and (max-width: 1200px) {
  .en-main-kv-block__title {
    font-size: 72px;
  }
}
@media only screen and (max-width: 1024px) {
  .en-main-kv-block__title {
    font-size: 56px;
  }
}
@media only screen and (max-width: 760px) {
  .en-main-kv-block__title {
    font-size: 42px;
  }
}
@media only screen and (max-width: 500px) {
  .en-main-kv-block__title {
    margin: 1rem 0;
  }
}
.en-main-kv-block__text {
  font-size: 32px;
  line-height: 1em;
  margin: 1rem 0;
  line-height: 1.2em;
  max-width: 58rem;
}
@media only screen and (max-width: 1600px) {
  .en-main-kv-block__text {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-main-kv-block__text {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-main-kv-block__text {
    font-size: 22px;
  }
}
.en-star-block {
  position: relative;
}
.en-star-block.m--item-1 {
  padding: 3rem 0;
}
.en-star-block.m--item-2 {
  padding-bottom: 4rem;
}
.en-star-block.m--item-4 {
  padding-bottom: 10rem;
}
@media only screen and (max-width: 760px) {
  .en-star-block {
    padding: 2rem 0 !important;
  }
}
@media only screen and (max-width: 500px) {
  .en-star-block {
    padding: 1rem 0 0 !important;
  }
}
.en-star-block__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-image: url(/modern-3/cb23c86f804b3c1dc4f0.svg);
  -webkit-mask-image: url(/modern-3/cb23c86f804b3c1dc4f0.svg);
}
.en-star-block__img.m--item-1 {
  mask-image: none;
  -webkit-mask-image: none;
}
@media only screen and (max-width: 500px) {
  .en-star-block__img.m--item-1 {
    object-fit: cover;
    aspect-ratio: 1.77777778;
  }
}
.en-star-block__img.m--item-2 {
  mask-position: right center;
  -webkit-mask-position: right center;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.en-star-block__img.m--item-3 {
  mask-position: left center;
  -webkit-mask-position: left center;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.en-star-block__img.m--item-4 {
  mask-position: bottom right;
  -webkit-mask-position: bottom right;
}
.en-star-block__img.m--item-5 {
  mask-position: left center;
  -webkit-mask-position: left center;
  mask-size: cover;
  -webkit-mask-size: cover;
}
.en-star-block__pic {
  display: block;
  position: absolute;
  inset: 0;
  opacity: 0.6;
}
.en-star-block__pic.m--item-1 .en-bg__top-fader {
  height: 30%;
}
.en-star-block__pic.m--item-1 .en-bg__bottom-fader {
  height: 30%;
}
.en-star-block__pic.m--item-1 .en-bg__left-fader {
  width: 30%;
  left: 0;
}
.en-star-block__pic.m--item-2 {
  right: calc(50% - 3rem);
  bottom: -90%;
  z-index: 1;
}
.en-star-block__pic.m--item-3 {
  left: calc(50% - 3rem);
  top: -50%;
  bottom: -3rem;
}
.en-star-block__pic.m--item-4 {
  right: calc(50% - 3rem);
}
.en-star-block__pic.m--item-5 {
  opacity: 1;
  left: calc(50% + 3rem);
}
@media only screen and (max-width: 500px) {
  .en-star-block__pic.m--item-5 {
    display: none;
  }
}
@media only screen and (max-width: 500px) {
  .en-star-block__pic {
    position: relative;
    opacity: 1;
    inset: 0 !important;
  }
}
.en-star-block__soldiers {
  position: absolute;
  max-width: 50%;
  z-index: 1;
  left: 0;
  top: 0;
}
.en-star-block__soldiers img {
  display: block;
  width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 500px) {
  .en-star-block__soldiers {
    max-width: 100%;
  }
}
.en-star-block__flex {
  display: flex;
  width: 55%;
  flex-shrink: 0;
  padding-right: 1.5rem;
}
.en-star-block__flex.m--end {
  justify-content: flex-end;
}
@media only screen and (max-width: 760px) {
  .en-star-block__flex {
    width: 60%;
  }
}
@media only screen and (max-width: 500px) {
  .en-star-block__flex {
    order: 1;
    padding-right: 1rem;
    margin-top: -2rem;
    width: 100%;
  }
}
.en-star-block__container {
  max-width: 46rem;
  margin: 0 auto;
  display: flex;
}
.en-star-block__container.m--end {
  justify-content: flex-end;
}
@media only screen and (max-width: 1600px) {
  .en-star-block__container {
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .en-star-block__container {
    flex-direction: column;
  }
}
.en-star-block__content {
  display: flex;
  position: relative;
  z-index: 1;
}
.en-star-block__icon {
  flex-shrink: 0;
  height: 5rem;
  width: 5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/modern-3/1f3a0b4101419ed355a4.png);
}
.en-star-block__coins {
  position: relative;
  z-index: 1;
}
.en-star-block__coins img {
  display: block;
  max-width: 17rem;
  width: 100%;
  object-fit: contain;
}
@media only screen and (max-width: 500px) {
  .en-star-block__coins {
    order: 0;
    max-width: 70%;
    margin: -10rem auto 0;
  }
}
.en-star-block__title {
  font-size: 40px;
  line-height: 1em;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0.7rem 0 1rem 0;
}
@media only screen and (max-width: 1600px) {
  .en-star-block__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-star-block__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 500px) {
  .en-star-block__title {
    font-size: 24px;
  }
}
.en-star-block__text {
  font-size: 20px;
  line-height: 32px;
  margin: 0;
  max-width: 20rem;
}
@media only screen and (max-width: 1600px) {
  .en-star-block__text {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-star-block__text {
    font-size: 16px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-star-block__text {
    max-width: 100%;
  }
}
.en-faq {
  margin-top: -7rem;
  position: relative;
  z-index: 1;
}
.en-faq__title {
  font-size: 56px;
  line-height: 1em;
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-align: center;
  margin: 0 0 1.5rem;
}
@media only screen and (max-width: 1600px) {
  .en-faq__title {
    font-size: 40px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-faq__title {
    font-size: 36px;
  }
}
@media only screen and (max-width: 1024px) {
  .en-faq__title {
    font-size: 32px;
  }
}
@media only screen and (max-width: 500px) {
  .en-faq__title {
    font-size: 24px;
  }
}
.en-faq-block {
  background-color: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  margin: 1rem auto;
  max-width: 100ch;
}
.en-faq-block__header {
  font-size: 20px;
  line-height: 32px;
  padding: 0.7rem 1rem;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  align-items: flex-start;
  transition: all 0.2s ease;
  list-style: none;
}
@media only screen and (max-width: 1600px) {
  .en-faq-block__header {
    font-size: 18px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-faq-block__header {
    font-size: 16px;
    line-height: 24px;
  }
}
.en-faq-block__header::-webkit-details-marker,
.en-faq-block__header::marker {
  display: none;
}
.en-faq-block__header span {
  flex: 1;
}
.en-faq-block__header::after,
.en-faq-block__header::before {
  content: '';
  display: block;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  margin-top: 0.3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.en-faq-block__header::before {
  background-image: url(/modern-3/6dc32b171ec38f0e6188.svg);
}
.en-faq-block__header::after {
  transition: transform 0.2s ease;
  background-image: url(/modern-3/65fd7b2850f676311cf0.svg);
}
.en-faq-block__header:hover {
  color: var(--en-accent-color);
}
.en-faq-block__header:active {
  opacity: 0.8;
}
.en-faq-block[open] .en-faq-block__header::after {
  transform: rotate(180deg);
}
.en-faq-block__content {
  padding: 0 1rem 1rem;
  display: flex;
  gap: 1.2rem;
  margin: 0;
  align-items: flex-start;
}
.en-faq-block__content::before {
  content: '';
  display: block;
  flex-shrink: 0;
  height: 1em;
  width: 1em;
  margin-top: 0.3rem;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url(/modern-3/a718f000d8380b56c2b2.svg);
}
.en-share {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 760px) {
  .en-share {
    flex-direction: column;
  }
}
.en-share__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1em;
  text-transform: uppercase;
  color: #fff;
}
@media only screen and (max-width: 1600px) {
  .en-share__title {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1200px) {
  .en-share__title {
    font-size: 24px;
  }
}
@media only screen and (max-width: 500px) {
  .en-share__title {
    font-size: 22px;
  }
}
@media only screen and (max-width: 760px) {
  .en-share__title {
    font-size: 24px;
    line-height: 32px;
  }
}
@media only screen and (max-width: 760px) and only screen and (max-width: 1600px) {
  .en-share__title {
    font-size: 22px;
    line-height: 34px;
  }
}
@media only screen and (max-width: 760px) and only screen and (max-width: 1200px) {
  .en-share__title {
    font-size: 18px;
    line-height: 28px;
  }
}
.en-share__list {
  display: flex;
  flex: 1;
  padding: 0 0.6rem;
}
@media only screen and (max-width: 760px) {
  .en-share__list {
    margin: 1.5rem 0 2rem;
  }
}
.en-share__item {
  cursor: pointer;
  flex-shrink: 0;
  height: 2rem;
  width: 2rem;
  margin-left: 0.5rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.1s ease;
}
@media only screen and (max-width: 760px) {
  .en-share__item {
    margin: 0 0.5rem;
    height: 2.5rem;
    width: 2.5rem;
  }
}
.en-share__item:hover,
.en-share__item:focus {
  transform: scale(1.05);
}
.en-share__item:active {
  transform: scale(1);
}
.en-share__item.m--vk {
  background-image: url(/modern-3/7923a28266f76000b1d2.svg);
}
.en-share__item.m--fb {
  background-image: url(/modern-3/ed6779f5362400cdaa50.svg);
}
.en-share__item.m--tw {
  background-image: url(/modern-3/ac3d210b1f55c1346e8d.svg);
}
.en-share__item.m--tg {
  background-image: url(/modern-3/51f201114e409efce403.svg);
}
.en-share__item.m--wa {
  background-image: url(/modern-3/f3fa2831858cb0b4726d.svg);
}
.en-share__item.m--re {
  background-image: url(/modern-3/ec9de191eb255498cf8e.svg);
}
.en-share__forum {
  cursor: pointer;
  color: #ffb84f;
  text-decoration: none;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 760px) {
  .en-share__forum {
    width: 100%;
    padding-top: 1.2rem;
    justify-content: center;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}
.en-share__forum::after,
.en-share__forum::before {
  content: '';
  width: 0.9rem;
  height: 0.9rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.en-share__forum::before {
  content: '';
  margin-right: 0.5rem;
  position: relative;
  top: 1px;
  background-image: url(/modern-3/e96026c870b7f9aac9b6.svg);
}
.en-share__forum::after {
  margin-left: 0.5rem;
  background-image: url(/modern-3/da67ab770ff303ec4e76.svg);
}
.en-share__forum:hover,
.en-share__forum:focus {
  text-decoration: underline;
}
.en-share__forum:active {
  color: #e78b37;
}
.en-recent {
  padding: 2rem 0 3rem;
}
.en-recent__header-title {
  font-size: 1.2rem;
  margin-bottom: 1.2rem;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  color: #fff;
}
.en-recent__item {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  transition: all 0.2s ease;
}
.en-recent__item:hover,
.en-recent__item:focus {
  color: #ffb84f;
}
.en-recent__item:active {
  color: #ffdf8b;
}
.en-recent__swiper {
  width: 100%;
}
.en-recent__image-wrapper {
  width: 100%;
  position: relative;
  padding-bottom: calc(100% * 8.4 / 16.4);
}
.en-recent__image {
  display: block;
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.en-recent__title {
  font-size: 1.2rem;
  margin: 0.6rem 0 0;
  color: inherit;
}
.en-about-header {
  padding: 2.5rem 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .en-about-header {
    padding-bottom: 3rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-about-header {
    padding-bottom: 2rem;
  }
}
.en-about-header__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.en-about-header__desc {
  max-width: 50rem;
  margin: 0;
}
.en-about-header__content {
  display: flex;
  gap: 1.6rem;
}
@media only screen and (max-width: 500px) {
  .en-about-header__content {
    flex-direction: column;
  }
}
.en-about-header__text {
  color: var(--en-muted-text-color);
  flex: 1;
  margin: 0;
}
.en-about-block {
  margin-bottom: 3rem;
  min-height: 27rem;
  display: grid;
  grid-template-columns: 60% 40%;
  box-shadow: 0px 23px 48px rgba(6, 12, 22, 0.44);
}
@media only screen and (max-width: 760px) {
  .en-about-block {
    grid-template-columns: 70% 30%;
  }
}
@media only screen and (max-width: 500px) {
  .en-about-block {
    grid-template-columns: 1fr !important;
  }
}
@media only screen and (max-width: 500px) {
  .en-about-block.m--with-bg {
    padding-top: 10rem;
  }
}
.en-about-block.m--equal {
  grid-template-columns: 1fr 1fr;
}
.en-about-block.m--equal .en-about-block__section:nth-child(2) {
  border-left: 0.25px solid var(--en-muted-border-color);
}
@media only screen and (max-width: 500px) {
  .en-about-block.m--equal .en-about-block__section:nth-child(2) {
    border-left: none;
  }
}
.en-about-block.m--reverse {
  grid-template-columns: 40% 60%;
}
@media only screen and (max-width: 760px) {
  .en-about-block.m--reverse {
    grid-template-columns: 30% 70%;
  }
}
.en-about-block__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 6;
  padding: 2.5rem 3.8rem;
  gap: 1.6rem;
}
@media only screen and (max-width: 1024px) {
  .en-about-block__section {
    padding: 2rem 3rem;
  }
}
@media only screen and (max-width: 760px) {
  .en-about-block__section {
    padding: 1.5rem 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-about-block__section {
    padding: 1.5rem;
  }
}
.en-about-block__section.m--reverse {
  grid-column-start: 2;
}
.en-about-block__img {
  display: block;
  object-fit: contain;
  width: 80%;
  margin: auto;
  height: auto;
}
.en-about-block__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.en-about-block__subtitle {
  margin: 0;
}
.en-about-block__text {
  color: var(--en-muted-text-color);
  margin: 0;
}
.en-about-block__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 56%;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: right top;
}
@media only screen and (max-width: 1024px) {
  .en-about-block__bg {
    width: 50%;
  }
}
@media only screen and (max-width: 760px) {
  .en-about-block__bg {
    height: 70%;
  }
}
@media only screen and (max-width: 500px) {
  .en-about-block__bg {
    height: 15rem !important;
    width: 100% !important;
  }
}
.en-about-block__bg.m--supply {
  width: 45%;
}
.en-about-block__bg.m--reverse {
  left: 0;
  right: unset;
  background-position: left top;
}
.en-about-block__bg.m--reverse .en-about-block__bg-before {
  left: initial;
  right: 0;
  background: linear-gradient(90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-about-block__bg-before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(-90deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-about-block__bg-after {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 35%;
  width: 100%;
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-about-block__bg.m--learn-after,
.en-about-block__bg.m--supply-after {
  display: none;
}
@media only screen and (max-width: 760px) {
  .en-about-block__bg.m--learn-after,
  .en-about-block__bg.m--supply-after {
    display: block;
  }
}
.en-campaigns-header {
  padding: 3.2rem 0 5.5rem;
}
@media only screen and (max-width: 760px) {
  .en-campaigns-header {
    padding: 1rem 0 3.5rem;
  }
}
.en-campaigns-header__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 3.2rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .en-campaigns-header__title {
    margin-bottom: 1.5rem;
  }
}
.en-campaigns-header__content {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 760px) {
  .en-campaigns-header__content {
    justify-content: initial;
    flex-direction: column-reverse;
  }
}
.en-campaigns-header__text {
  color: var(--en-muted-text-color);
  max-width: 34.5rem;
  margin: 0;
}
.en-campaigns-header__subtitle {
  margin: 0;
  text-align: center;
}
@media only screen and (max-width: 760px) {
  .en-campaigns-header__subtitle {
    text-align: left;
    margin-bottom: 1.5rem;
  }
  .en-campaigns-header__subtitle br {
    display: none;
  }
}
.en-campaign {
  position: relative;
  margin-bottom: 3.2rem;
  box-shadow: 0px 23px 48px rgba(6, 12, 22, 0.44);
}
@media only screen and (max-width: 760px) {
  .en-campaign {
    margin-bottom: 1.5rem;
  }
}
.en-campaign__section {
  position: relative;
  padding: 1rem 0 0 2rem;
  z-index: 5;
}
@media only screen and (max-width: 760px) {
  .en-campaign__section {
    padding-left: 1rem;
  }
}
.en-campaign__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .en-campaign__title {
    padding-right: 1rem;
  }
}
.en-campaign__info {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 760px) {
  .en-campaign__info {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media only screen and (max-width: 760px) {
  .en-campaign__middle {
    position: relative;
  }
}
.en-campaign__play {
  cursor: pointer;
  position: absolute;
  z-index: 6;
  right: 13rem;
  top: 13rem;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: 1.7rem;
  background-position: 1.4rem center;
  background-color: rgba(13, 25, 30, 0.33);
  background-image: url(/modern-3/5fac4652d063350acb1e.svg);
  transition: all 0.2s ease;
}
@media only screen and (max-width: 760px) {
  .en-campaign__play {
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
  }
}
.en-campaign__play:hover,
.en-campaign__play:focus {
  background-color: rgba(13, 25, 30, 0.5);
}
.en-campaign__play:active {
  background-color: rgba(13, 25, 30, 0.7);
}
.en-campaign__year {
  letter-spacing: 0.4rem;
  text-transform: uppercase;
}
.en-campaign__divider {
  height: 1.6rem;
  width: 1px;
  flex-shrink: 0;
  margin: 0 1rem 0 2rem;
  background-color: rgba(255, 255, 255, 0.25);
}
@media only screen and (max-width: 760px) {
  .en-campaign__divider {
    display: none;
  }
}
.en-campaign__vs {
  height: 1.4rem;
  width: 1.4rem;
  margin: 0 0.25rem;
  flex-shrink: 0;
  background-image: url(/modern-3/73cb82e338355597bb69.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
.en-campaign__flag {
  width: 5rem;
  height: 5rem;
  flex-shrink: 0;
  background-position: -0.5rem 0.5rem;
  background-repeat: no-repeat;
  background-size: 120%;
}
.en-campaign__flag.m--it {
  background-image: url(/modern-3/54f243828067c3d55fb2.png);
}
.en-campaign__flag.m--usa {
  background-image: url(/modern-3/9da807787f53da4d323c.png);
}
.en-campaign__flag.m--uk {
  background-image: url(/modern-3/5037954f36d38de047fe.png);
}
.en-campaign__flag.m--france {
  background-image: url(/modern-3/d79370538d74092ba279.png);
}
.en-campaign__flag.m--germany {
  background-image: url(/modern-3/26853744b88cfc48d241.png);
}
.en-campaign__flag.m--ussr {
  background-image: url(/modern-3/325b6542a0df6fe5edaf.png);
}
.en-campaign__flag.m--japan {
  background-image: url(/modern-3/2e7deee38df3850d6bc0.png);
}
.en-campaign__flags {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1600px) {
  .en-campaign__flags {
    margin-left: -0.75rem;
    margin-top: 0.5rem;
  }
}
.en-campaign__subtitle {
  text-transform: uppercase;
  margin: 0 0 0.8rem;
  max-width: 42rem;
}
@media only screen and (max-width: 760px) {
  .en-campaign__subtitle {
    padding-right: 1rem;
  }
}
.en-campaign__text {
  color: var(--en-muted-text-color);
  max-width: 40rem;
  padding-bottom: 4.3rem;
}
@media only screen and (max-width: 760px) {
  .en-campaign__text {
    padding-right: 1rem;
    padding-bottom: 1rem;
  }
}
.en-campaign__hint {
  font-style: italic;
  color: var(--en-muted-text-color);
}
.en-campaign__hint a {
  color: var(--en-accent-color);
  text-decoration: none;
}
.en-campaign__hint a:hover,
.en-campaign__hint a:active {
  color: #ffd482;
  text-decoration: underline;
}
.en-campaign__footer {
  border-top: 1px solid var(--en-muted-border-color);
  display: flex;
  align-items: center;
  padding: 1.4rem 0;
  margin-right: 1.4rem;
}
@media only screen and (max-width: 760px) {
  .en-campaign__footer {
    padding: 1rem 0;
    flex-direction: column;
    align-items: initial;
    margin-right: 1rem;
  }
  .en-campaign__footer .en-clear-button {
    height: 3.5rem;
  }
}
.en-campaign__quantity {
  display: flex;
  align-items: center;
  margin-right: 2.5rem;
  color: var(--en-muted-text-color);
}
@media only screen and (max-width: 760px) {
  .en-campaign__quantity {
    margin: 0 0 1rem 1rem;
  }
}
.en-campaign__quantity-number {
  margin: 0 0.5rem;
}
.en-campaign__quantity-label {
  align-self: flex-end;
}
.en-campaign__quantity::before {
  content: '';
  opacity: 0.82;
  height: 1.6rem;
  width: 1.6rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.en-campaign__quantity.m--levels::before {
  background-image: url(/modern-3/e1473bd64f906e7d43ce.svg);
}
.en-campaign__quantity.m--missions::before {
  background-image: url(/modern-3/abf33b921bcb146d5fbb.svg);
}
.en-campaign__quantity.m--weapons::before {
  background-image: url(/modern-3/b9bd5b4426133132842d.svg);
}
.en-campaign__quantity.m--enginery::before {
  background-image: url(/modern-3/080ef7525d7985248caf.svg);
}
.en-campaign-swiper {
  height: 4.8rem;
}
@media only screen and (max-width: 760px) {
  .en-campaign-swiper {
    height: 7.5rem;
  }
}
.en-campaign-swiper__img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.en-campaign-swiper .swiper-slide {
  width: 9.6rem;
}
@media only screen and (max-width: 760px) {
  .en-campaign-swiper .swiper-slide {
    width: 13rem;
  }
}
.en-this-is {
  position: relative;
  padding-top: 3.5rem;
}
.en-this-is__content {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  text-align: center;
  align-items: center;
  padding: 5rem 0;
  margin-top: 25rem;
  background: radial-gradient(50% 50% at 50% 50%, #122126 0%, rgba(18, 33, 38, 0) 100%);
}
@media only screen and (max-width: 500px) {
  .en-this-is__content {
    margin-top: 10rem;
    padding: 3rem 0 3rem;
  }
}
.en-this-is__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.8rem;
}
.en-this-is__title span {
  color: #9e7cff;
}
.en-this-is__desc {
  color: rgba(255, 255, 255, 0.8);
  max-width: 70ch;
}
.en-this-is__links {
  display: flex;
  justify-content: center;
  gap: 1.6rem;
}
@media only screen and (max-width: 760px) {
  .en-this-is__links {
    flex-direction: column;
  }
}
@media only screen and (max-width: 759px) {
  .en-this-is__links {
    grid-template-columns: 1fr;
  }
}
.en-this-is__link {
  flex: 1;
  position: relative;
  text-decoration: none;
  max-width: 25rem;
  background: rgb(var(--en-bg-light-rgb));
  border-bottom: 2px solid;
  box-shadow: 0px 24px 24px rgba(11, 25, 29, 0.71), inset 0px 1px 0px rgba(255, 255, 255, 0.11);
  transition: transform 0.15s ease-in-out;
}
@media only screen and (max-width: 1024px) {
  .en-this-is__link {
    max-width: unset;
    flex: 1;
  }
}
.en-this-is__link:hover,
.en-this-is__link:focus {
  transform: translateY(-5px);
}
.en-this-is__link:active {
  transform: translateY(-3px);
}
.en-this-is__link.m--shop {
  min-height: 10rem;
  display: none;
  box-shadow: 0px 24px 24px rgba(11, 25, 29, 0.71), inset 0px 1px 0px rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 500px) {
  .en-this-is__link.m--shop {
    display: block;
  }
}
.en-this-is__link.m--cyan {
  border-bottom-color: #00FFE0;
  color: #00FFE0;
}
.en-this-is__link.m--purple {
  border-bottom-color: #9E7CFF;
  color: #9E7CFF;
}
.en-this-is__link.m--golden {
  border-bottom-color: #D5B77F;
  color: #D5B77F;
}
.en-this-is__link.m--orange {
  border-bottom-color: var(--en-accent-color);
  color: var(--en-accent-color);
}
.en-this-is__link-content {
  padding: 1.4rem 1.6rem 3rem;
  max-width: calc(100% - 8rem);
  position: relative;
  z-index: 1;
}
@media only screen and (min-width: 760px) and (max-width: 1200px) {
  .en-this-is__link-content {
    padding-top: 8rem;
    padding-bottom: 1.4rem;
    max-width: 100%;
  }
}
@media only screen and (max-width: 500px) {
  .en-this-is__link-content {
    padding: 1rem;
    max-width: calc(100% - 5rem);
  }
}
.en-this-is__link-title {
  color: inherit;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.en-this-is__link-text {
  color: #fff;
}
.en-this-is__link-external {
  position: absolute;
  right: 1.5rem;
  top: 1.5rem;
}
.en-this-is__link-bg {
  position: absolute;
  right: 0;
  top: 1px;
  bottom: 0;
  width: 14rem;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
.en-this-is__link-bg::before {
  content: '';
  position: absolute;
  display: block;
  left: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 85%;
  background: linear-gradient(90deg, rgba(var(--en-bg-light-rgb), 1) 0%, rgba(var(--en-bg-light-rgb), 0.78125) 20.83%, rgba(var(--en-bg-light-rgb), 0.453125) 49.48%, rgba(var(--en-bg-light-rgb), 0.172841) 78.12%, rgba(var(--en-bg-light-rgb), 0) 100%);
}
@media only screen and (min-width: 1201px) {
  .en-this-is__link-bg.m--full {
    width: 100%;
    left: 0;
  }
  .en-this-is__link-bg.m--full::before {
    background: linear-gradient(90deg, #252E34 0%, rgba(37, 46, 52, 0.78) 20.83%, rgba(37, 46, 52, 0.45) 49.48%, rgba(37, 46, 52, 0.17) 78.12%, rgba(37, 46, 52, 0) 100%);
  }
}
@media only screen and (min-width: 760px) and (max-width: 1200px) {
  .en-this-is__link-bg {
    width: 100%;
    height: 10rem;
  }
  .en-this-is__link-bg::before {
    background: linear-gradient(0deg, rgba(var(--en-bg-light-rgb), 1) 0%, rgba(var(--en-bg-light-rgb), 0.78125) 20.83%, rgba(var(--en-bg-light-rgb), 0.453125) 49.48%, rgba(var(--en-bg-light-rgb), 0.172841) 78.12%, rgba(var(--en-bg-light-rgb), 0) 100%);
    height: 85%;
    width: 100%;
    top: unset;
  }
}
.en-this-is__link-bg.m--img-1 {
  background-image: url(/modern-3/54c432cd2ea36adf3fb5.png);
}
.en-this-is__link-bg.m--img-2 {
  background-image: url(/modern-3/334bb14de6e0e01b8aab.jpg);
}
.en-this-is__link-bg.m--img-3 {
  background-image: url(/modern-3/4d56953a340be6685e59.jpg);
}
.en-this-is__link-bg.m--img-shop {
  width: 100%;
  left: 0;
  background-image: url(/modern-3/1c9f88466f923009d055.jpg);
}
.en-this-is__link-bg.m--img-shop::before {
  display: none;
}
.en-squads-header {
  display: flex;
}
.en-squads-header__section {
  padding: 3.2rem 0 5.5rem;
}
@media only screen and (max-width: 760px) {
  .en-squads-header__section {
    padding-bottom: 2rem;
  }
}
.en-squads-header__back {
  cursor: pointer;
  text-decoration: none;
  color: #ffb84f;
  margin-bottom: 0.5rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s ease;
}
.en-squads-header__back:hover,
.en-squads-header__back:focus {
  color: #ffdf8b;
}
.en-squads-header__back:active {
  color: #e78b37;
}
.en-squads-header__back::before {
  content: '';
  width: 0.8rem;
  height: 0.8rem;
  margin-right: 0.4rem;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url(/modern-3/9080ac17a4449b602c25.svg);
}
.en-squads-header__specs {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 760px) {
  .en-squads-header__specs {
    display: none;
  }
}
.en-squads-header__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 3.2rem;
}
.en-squads-header__content {
  display: flex;
  justify-content: space-between;
}
.en-squads-header__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34.5rem;
  margin: 0;
}
@media only screen and (max-width: 760px) {
  .en-squads-header__text {
    max-width: 100%;
  }
}
.en-squads-spec {
  padding-bottom: 2.5rem;
}
.en-squads-spec__title {
  text-transform: uppercase;
  margin: 0 0 1.6rem;
}
.en-squads-spec__text {
  color: rgba(255, 255, 255, 0.82);
  max-width: 34.5rem;
  margin: 0;
}
.en-spec-icon {
  height: 2.4rem;
  width: 2.4rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.en-spec-icon.m--icon-1 {
  background-image: url(/modern-3/e8cb0aaade24a7f0eefc.svg);
}
.en-spec-icon.m--icon-2 {
  background-image: url(/modern-3/6c7806343615260d5cc3.svg);
}
.en-spec-icon.m--icon-3 {
  background-image: url(/modern-3/2e64003daa243e41d7ca.svg);
}
.en-spec-icon.m--icon-4 {
  background-image: url(/modern-3/2f648709b53fd093ce80.svg);
}
.en-spec-icon.m--icon-5 {
  background-image: url(/modern-3/c18e3a5ce68cade7a79b.svg);
}
.en-spec-icon.m--icon-6 {
  background-image: url(/modern-3/b3940a183dd5583655a5.svg);
}
.en-spec-icon.m--icon-7 {
  background-image: url(/modern-3/c8f4dd7f5249a755bfb0.svg);
}
.en-spec-icon.m--icon-8 {
  background-image: url(/modern-3/241aea27d50d8173c0e4.svg);
}
.en-spec-icon.m--icon-9 {
  background-image: url(/modern-3/d8c99e0fa77727a8fd74.svg);
}
.en-spec-icon.m--icon-10 {
  background-image: url(/modern-3/97715c96bb92f7a02de4.svg);
}
.en-spec-icon.m--icon-11 {
  background-image: url(/modern-3/af67cdca0471a586e741.svg);
}
.en-spec-icon.m--icon-12 {
  background-image: url(/modern-3/21bda9f1f609cc2cd180.svg);
}
.en-spec-icon.m--icon-13 {
  background-image: url(/modern-3/4f96942b7fadad57e162.svg);
}
.en-spec-icon.m--icon-14 {
  background-image: url(/modern-3/db28722c6d87f566ba49.svg);
}
.en-circled-items {
  position: relative;
  text-align: center;
  padding-top: 2rem;
  height: 16rem;
  width: 16rem;
}
.en-circled-items__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.en-circled-items__text {
  text-transform: uppercase;
}
.en-circled-items__container {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
}
.en-circled-items__item {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -1.2rem;
}
.en-circled-items__line {
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  height: 2.4rem;
  width: 2.4rem;
  margin: -1.2rem;
}
.en-circled-items__line::after {
  content: '';
  position: absolute;
  top: 1.2rem;
  height: 1px;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.14);
}
.en-circled-items__item:nth-of-type(1) {
  transform: rotate(25.71428571deg) translate(10rem) rotate(-25.71428571deg);
}
.en-circled-items__line:nth-of-type(1) {
  transform: rotate(25.71428571deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(2) {
  transform: rotate(51.42857143deg) translate(10rem) rotate(-51.42857143deg);
}
.en-circled-items__line:nth-of-type(2) {
  transform: rotate(51.42857143deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(3) {
  transform: rotate(77.14285714deg) translate(10rem) rotate(-77.14285714deg);
}
.en-circled-items__line:nth-of-type(3) {
  transform: rotate(77.14285714deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(4) {
  transform: rotate(102.85714286deg) translate(10rem) rotate(-102.85714286deg);
}
.en-circled-items__line:nth-of-type(4) {
  transform: rotate(102.85714286deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(5) {
  transform: rotate(128.57142857deg) translate(10rem) rotate(-128.57142857deg);
}
.en-circled-items__line:nth-of-type(5) {
  transform: rotate(128.57142857deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(6) {
  transform: rotate(154.28571429deg) translate(10rem) rotate(-154.28571429deg);
}
.en-circled-items__line:nth-of-type(6) {
  transform: rotate(154.28571429deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(7) {
  transform: rotate(180deg) translate(10rem) rotate(-180deg);
}
.en-circled-items__line:nth-of-type(7) {
  transform: rotate(180deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(8) {
  transform: rotate(205.71428571deg) translate(10rem) rotate(-205.71428571deg);
}
.en-circled-items__line:nth-of-type(8) {
  transform: rotate(205.71428571deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(9) {
  transform: rotate(231.42857143deg) translate(10rem) rotate(-231.42857143deg);
}
.en-circled-items__line:nth-of-type(9) {
  transform: rotate(231.42857143deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(10) {
  transform: rotate(257.14285714deg) translate(10rem) rotate(-257.14285714deg);
}
.en-circled-items__line:nth-of-type(10) {
  transform: rotate(257.14285714deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(11) {
  transform: rotate(282.85714286deg) translate(10rem) rotate(-282.85714286deg);
}
.en-circled-items__line:nth-of-type(11) {
  transform: rotate(282.85714286deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(12) {
  transform: rotate(308.57142857deg) translate(10rem) rotate(-308.57142857deg);
}
.en-circled-items__line:nth-of-type(12) {
  transform: rotate(308.57142857deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(13) {
  transform: rotate(334.28571429deg) translate(10rem) rotate(-334.28571429deg);
}
.en-circled-items__line:nth-of-type(13) {
  transform: rotate(334.28571429deg) translate(6rem);
}
.en-circled-items__item:nth-of-type(14) {
  transform: rotate(360deg) translate(10rem) rotate(-360deg);
}
.en-circled-items__line:nth-of-type(14) {
  transform: rotate(360deg) translate(6rem);
}
.en-squads-viewer {
  position: relative;
  box-shadow: 0px 23px 48px rgba(6, 12, 22, 0.44);
  border: 0.25px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 2.5rem;
}
.en-squads-viewer__pagination {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3.5rem;
  width: 100%;
  border-bottom: 0.25px solid rgba(255, 255, 255, 0.14);
  z-index: 6;
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.en-squads-viewer__bullet {
  cursor: pointer;
  height: 100%;
  width: 3.5rem;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 80%;
  transition: all 0.2s ease;
}
.en-squads-viewer__bullet:nth-child(1) {
  background-image: url(/modern-3/e8cb0aaade24a7f0eefc.svg);
}
.en-squads-viewer__bullet:nth-child(2) {
  background-image: url(/modern-3/6c7806343615260d5cc3.svg);
}
.en-squads-viewer__bullet:nth-child(3) {
  background-image: url(/modern-3/2e64003daa243e41d7ca.svg);
}
.en-squads-viewer__bullet:nth-child(4) {
  background-image: url(/modern-3/2f648709b53fd093ce80.svg);
}
.en-squads-viewer__bullet:nth-child(5) {
  background-image: url(/modern-3/c18e3a5ce68cade7a79b.svg);
}
.en-squads-viewer__bullet:nth-child(6) {
  background-image: url(/modern-3/b3940a183dd5583655a5.svg);
}
.en-squads-viewer__bullet:nth-child(7) {
  background-image: url(/modern-3/c8f4dd7f5249a755bfb0.svg);
}
.en-squads-viewer__bullet:nth-child(8) {
  background-image: url(/modern-3/241aea27d50d8173c0e4.svg);
}
.en-squads-viewer__bullet:nth-child(9) {
  background-image: url(/modern-3/d8c99e0fa77727a8fd74.svg);
}
.en-squads-viewer__bullet:nth-child(10) {
  background-image: url(/modern-3/97715c96bb92f7a02de4.svg);
}
.en-squads-viewer__bullet:nth-child(11) {
  background-image: url(/modern-3/af67cdca0471a586e741.svg);
}
.en-squads-viewer__bullet:nth-child(12) {
  background-image: url(/modern-3/21bda9f1f609cc2cd180.svg);
}
.en-squads-viewer__bullet:nth-child(13) {
  background-image: url(/modern-3/4f96942b7fadad57e162.svg);
}
.en-squads-viewer__bullet:nth-child(14) {
  background-image: url(/modern-3/db28722c6d87f566ba49.svg);
}
.en-squads-viewer__bullet.m--active {
  border-bottom-color: #ffb84f;
}
.en-squads-viewer__item {
  height: 100%;
  width: 100%;
  background-color: rgb(var(--en-bg-rgb));
}
.en-squads-viewer__content {
  position: relative;
  z-index: 6;
  padding: 6rem 3.5rem 5rem;
}
@media only screen and (max-width: 660px) {
  .en-squads-viewer__content {
    padding: 20rem 2rem 2rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-squads-viewer__content {
    padding: 15rem 1.5rem 1.5rem;
  }
}
.en-squads-viewer__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  margin: 0 0 1.2rem;
  text-transform: uppercase;
}
.en-squads-viewer__text {
  max-width: 24rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
@media only screen and (max-width: 660px) {
  .en-squads-viewer__text {
    max-width: 100%;
  }
}
.en-squads-upgrades {
  margin-bottom: 3.2rem;
}
.en-squads-upgrades__header-title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0 0 2rem;
}
@media only screen and (max-width: 1024px) {
  .en-squads-upgrades__header-title {
    margin-bottom: 1rem;
  }
}
.en-squads-upgrades__title {
  margin: 0.8rem 0;
}
.en-squads-upgrades__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}
.en-squads-upgrades__blocks {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 1.6rem;
  grid-auto-rows: auto;
}
@media only screen and (max-width: 1024px) {
  .en-squads-upgrades__blocks {
    gap: 1.2rem;
  }
}
.en-squads-upgrades__block {
  padding: 1.6rem 1.2rem 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-column-end: span 3;
}
@media only screen and (max-width: 1024px) {
  .en-squads-upgrades__block {
    grid-column-end: span 4;
  }
}
@media only screen and (max-width: 500px) {
  .en-squads-upgrades__block {
    grid-column-end: span 12;
    padding-left: 4rem;
    padding-right: 4rem;
  }
}
.en-squads-upgrades__block:nth-child(2) {
  background-color: rgba(60, 148, 215, 0.16);
}
.en-squads-upgrades__block:nth-child(3) {
  background-color: rgba(175, 75, 75, 0.22);
}
.en-squads-upgrades__block:nth-child(4) {
  background-color: rgba(156, 169, 74, 0.17);
}
.en-squads-upgrades__block.m--clear {
  padding: 0;
  text-align: left;
  align-items: flex-start;
  border-color: transparent;
}
@media only screen and (max-width: 1024px) {
  .en-squads-upgrades__block.m--clear {
    grid-column-end: span 12;
    grid-row-end: span 1;
    align-items: initial;
  }
  .en-squads-upgrades__block.m--clear .en-squads-upgrades__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
}
.en-squads-upgrades__icon {
  height: 4.8rem;
  width: 4.8rem;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.en-squads-upgrades__icon.m--icon-1 {
  background-image: url(/modern-3/7bf5cc2684ae0ef64dc3.svg);
}
.en-squads-upgrades__icon.m--icon-2 {
  background-image: url(/modern-3/f1635fadefc465a0b9d7.svg);
}
.en-squads-upgrades__icon.m--icon-3 {
  background-image: url(/modern-3/cce4c817f2951ee65082.svg);
}
.en-squads-command {
  margin: 3.2rem 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.82);
}
.en-replays {
  font-size: 1.1rem;
  line-height: 1.6rem;
  padding-bottom: 1.4rem;
}
.en-replays h2 {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  line-height: 4.6rem;
  margin: 0 0 2rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .en-replays h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-replays h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
.en-replays .en-about-header {
  padding-bottom: 0;
}
.en-replays h3 {
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 0.8rem;
}
.en-replays__tabs {
  display: flex;
  gap: 2rem;
  text-transform: uppercase;
  padding-bottom: 1rem;
}
.en-replays__tab {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.en-replays__tab:hover,
.en-replays__tab:focus,
.en-replays__tab.--active {
  color: #FFB84F;
  transition: color 0.2s ease;
}
.en-replays__tab:active {
  opacity: 0.7;
}
.en-replays__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-width: 80%;
  padding-bottom: 2rem;
}
@media only screen and (max-width: 1024px) {
  .en-replays__list {
    max-width: 100%;
  }
}
.en-replays__loadmore {
  min-height: 5rem;
  padding-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.en-screenshots {
  padding-top: 3rem;
  position: relative;
}
.en-screenshots gj-youtube {
  position: absolute;
  inset: 0;
}
.en-screenshots__fader {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 23rem;
  width: 100%;
  background: linear-gradient(180deg, #0E1416 0%, rgba(14, 20, 22, 0.9) 8.85%, rgba(14, 20, 22, 0.619792) 31.79%, rgba(14, 20, 22, 0.24) 65.08%, rgba(14, 20, 22, 0.05) 79.69%, rgba(14, 20, 22, 0) 100%);
}
.en-screenshots__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
}
.en-screenshots__grid {
  display: grid;
  gap: 0.8rem;
  margin-bottom: 0.8rem;
  grid-template-columns: repeat(6, 1fr);
}
.en-screenshots__grid.m--rows-4 {
  grid-template-columns: repeat(4, 1fr);
}
.en-screenshots__item {
  display: block;
  position: relative;
}
.en-screenshots__item.m--main {
  grid-column-end: span 2;
  grid-row-end: span 1;
}
@media only screen and (max-width: 500px) {
  .en-screenshots__item.m--main {
    grid-column-end: span 3;
  }
}
.en-screenshots__item.m--main:nth-child(1) {
  grid-column-end: span 4;
  grid-row-end: span 2;
}
@media only screen and (max-width: 500px) {
  .en-screenshots__item.m--main:nth-child(1) {
    grid-column-end: span 6;
    padding-bottom: calc(100% * 9 / 16);
  }
}
.en-screenshots__item img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  display: block;
}
.en-paginator {
  padding: 0;
  margin: 0;
  margin-bottom: 2rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.en-paginator__page {
  margin: 0;
  list-style-type: none;
}
.en-paginator__page-link {
  display: block;
  padding: 0.5rem 1rem;
  color: #ffb84f;
  text-decoration: none;
  transition: background-color 0.2s ease;
}
.en-paginator__page-link:hover,
.en-paginator__page-link:focus {
  background-color: rgba(255, 255, 255, 0.1);
}
.en-paginator__page-link:active {
  background-color: rgba(255, 255, 255, 0.05);
}
.en-paginator__page-span {
  display: block;
  padding: 0.5rem 1rem;
  background-color: rgba(255, 255, 255, 0.2);
}
.en-roadmap {
  font-size: 1.1rem;
  line-height: 1.6rem;
  padding-bottom: 1.4rem;
  margin-bottom: 1.5rem;
}
.en-roadmap h2 {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 3.8rem;
  line-height: 4.6rem;
  margin: 0 0 2rem;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .en-roadmap h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-roadmap h2 {
    font-size: 3rem;
    line-height: 3.5rem;
  }
}
.en-roadmap h3 {
  font-size: 2rem;
  line-height: 2.6rem;
  margin-bottom: 0.8rem;
}
.en-error {
  min-height: 100vh;
  max-width: 1920px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-image: url(/modern-3/1acf5940c02164bdd722.png);
  background-size: cover;
  background-position: center top;
}
.en-error::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  background: linear-gradient(180deg, rgba(var(--en-bg-rgb), 0) 0%, rgba(var(--en-bg-rgb), 1) 100%);
}
.en-error__logo {
  cursor: pointer;
  text-decoration: none;
  background-image: url(/modern-3/e39a2c259a6870922278.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  height: 6rem;
  width: 8rem;
  margin: 5rem 0 1rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 760px) {
  .en-error__logo {
    margin-top: 3rem;
  }
}
.en-error__section {
  text-align: center;
  position: relative;
  z-index: 1;
}
.en-error__code {
  font-size: 14.8rem;
  line-height: 14rem;
  color: rgba(255, 244, 207, 0.07);
}
.en-error__code.m--tools {
  background-image: url(/modern-3/5a67947c7bfb2e3ddd94.svg);
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 3.6rem;
}
.en-error__code.m--star {
  background-image: url(/modern-3/948ce00ed5d89024f80b.png);
  background-repeat: no-repeat;
  background-position: center 55%;
  background-size: 3.6rem;
}
.en-error__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 2.8rem;
  line-height: 3.2rem;
  margin: 0 0 0.8rem;
}
.en-error__desc {
  font-size: 1rem;
  line-height: 1.6rem;
  margin: 0 3rem 2rem;
}
.en-error__nav {
  display: flex;
  justify-content: center;
  margin: 1.5rem 0 4rem;
}
@media only screen and (max-width: 760px) {
  .en-error__nav {
    margin-top: 3rem;
  }
}
.en-error__nav-link {
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 2.4rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0.8rem;
  transition: all 0.2 ease;
}
.en-error__nav-link:hover,
.en-error__nav-link:focus {
  color: #ffffff;
}
.en-error__nav-link:active {
  color: rgba(255, 255, 255, 0.9);
}
.g-grid {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 100%;
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 1rem;
  margin-right: -0.5rem;
  margin-left: -0.5rem;
  justify-content: space-between;
}
.g-grid:first-child {
  margin-top: 1rem;
}
.g-grid:last-child {
  margin-bottom: 0;
}
.g-col {
  box-sizing: border-box;
  max-width: 100%;
  flex: 0 0 auto;
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}
.g-col--100 {
  flex-basis: 100%;
  max-width: 100%;
}
.g-col--75 {
  flex-basis: 75%;
  max-width: 75%;
}
.g-col--50 {
  flex-basis: 50%;
  max-width: 50%;
}
.g-col--33 {
  flex-basis: 33%;
  max-width: 33%;
}
.g-col--25 {
  flex-basis: 25%;
  max-width: 25%;
}
@media only screen and (max-width: 1024px) {
  .g-col {
    box-sizing: border-box;
    flex: 0 0 auto;
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .g-col:last-child {
    margin: 0;
  }
  .g-col--100,
  .g-col--75,
  .g-col--50,
  .g-col--33 {
    flex-basis: 100%;
    max-width: 100%;
  }
  .g-col--25 {
    flex-basis: 50%;
    max-width: 50%;
  }
}
.g-grid ul {
  padding: 0;
  margin: 0.2em 2em 1.3em 1.5em;
  list-style: disc;
}
.g-grid li {
  margin: 0;
  padding: 0;
  margin-bottom: 0.5em;
  line-height: 1.4;
}
.e-figure {
  display: flex;
  flex-flow: column;
  margin: 0;
}
.e-figure + p {
  margin: 1em 0;
}
.no-flexbox .e-figure {
  display: block;
}
.e-figure.-no-caption {
  border: none;
}
.e-figure__img {
  align-self: center;
  max-width: 100%;
  flex-shrink: 0;
}
.e-figure__caption {
  display: block;
  padding: 0.5em 1em;
  font-size: 18px;
}
.e-figure__caption > a:hover {
  background-image: none;
}
.e-figure > a {
  border-style: solid;
  border-width: 1px;
  text-align: center;
  background-image: none;
}
.e-screenshot {
  display: flex;
  flex-direction: column;
  margin: 0.5em 0;
}
.no-flexbox .e-screenshot {
  display: block;
}
.e-screenshot__img {
  display: flex;
  align-self: center;
  width: 100%;
  height: 100%;
}
.no-flexbox .e-screenshot__img {
  display: block;
}
.e-screenshot__youtube {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}
.e-screenshot__youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.e-screenshot__caption {
  flex-basis: 66.66666667%;
  max-width: 66.66666667%;
  padding: 0 1.5em;
  text-align: right;
  font-size: 16px;
}
.no-flexbox .e-screenshot__caption {
  float: left;
  width: 60%;
}
.e-screenshot__download-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.no-flexbox .e-screenshot__download-wrapper {
  display: block;
}
.e-screenshot__download-list {
  display: flex;
  flex-basis: 33.33333333%;
  max-width: 33.33333333%;
  flex-flow: row wrap;
  justify-content: space-around;
  margin: 0px !important;
  padding: 0 !important;
}
.no-flexbox .e-screenshot__download-list {
  width: 33%;
}
.e-screenshot__download-item {
  display: flex;
  height: 1.2em;
  margin: 0px !important;
}
.e-screenshot__download-link:hover {
  background-image: none;
}
@media only screen and (max-width: 1024px) {
  .e-screenshot__caption {
    flex-basis: 50%;
    max-width: 50%;
    text-align: left;
    padding: 0px;
  }
  .e-screenshot__download-list {
    flex-basis: 50%;
    max-width: 50%;
  }
}
@media only screen and (max-width: 760px) {
  .e-screenshot__download-list {
    flex-flow: column nowrap;
    align-items: flex-end;
  }
}
.en-migration {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5rem;
  padding: 3rem 0;
}
.en-migration__title {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 9.28px;
  line-height: 1;
  text-align: center;
}
.en-migration__subtitle {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.en-migration__why {
  max-width: 75ch;
  text-align: center;
}
.en-migration__why p {
  opacity: 0.8;
}
.en-migration__store {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .en-migration__store {
    grid-template-columns: 1fr;
  }
}
.en-migration__store li {
  opacity: 0.8;
}
.en-migration__store img {
  object-fit: contain;
  overflow: hidden;
  width: 100%;
  border-radius: 0.5rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
}
.en-migration__cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media only screen and (max-width: 1024px) {
  .en-migration__cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 760px) {
  .en-migration__cards {
    grid-template-columns: 1fr;
  }
}
.en-migration__card {
  text-align: center;
}
.en-migration__card h4 {
  margin-bottom: 0;
}
.en-migration__card p {
  opacity: 0.8;
}
.en-migration__features {
  text-align: center;
  max-width: 75ch;
}
.en-migration__features p {
  opacity: 0.8;
}
.en-migration__features .en-play-button {
  margin-top: 2rem;
}
.en-migration__faq-subtitle {
  font-family: 'Alumni Sans', sans-serif;
  font-weight: 600;
  font-size: 40px;
  line-height: 40px;
  text-align: center;
}
.en-migration__faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.en-migration__faq details {
  display: flex;
  flex-direction: column;
}
.en-migration__faq details[open] {
  gap: 1rem;
}
.en-migration__faq section {
  gap: 1rem;
  display: flex;
  font-size: 18px;
}
.en-migration__faq section::before {
  content: "";
  height: 1em;
  width: 1em;
  margin-top: 0.3rem;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271em%27 height=%271em%27 viewBox=%270 0 16 17%27 fill=%27none%27%3E%3Crect y=%270.631836%27 width=%2716%27 height=%2712%27 rx=%271%27 fill=%27white%27 fill-opacity=%270.5%27 style=%27fill:white;fill-opacity:0.5;%27/%3E%3Cpath d=%27M4 16.6318V12.6318H8L4 16.6318Z%27 fill=%27white%27 fill-opacity=%270.5%27 style=%27fill:white;fill-opacity:0.5;%27/%3E%3C/svg%3E");
}
.en-migration__faq summary {
  font-size: 20px;
  gap: 1rem;
  display: flex;
  cursor: pointer;
  font-weight: bold;
  transition: color 0.2s ease;
  position: relative;
  padding-right: 2rem;
  -webkit-tap-highlight-color: transparent;
}
.en-migration__faq summary:hover {
  color: #FEBE6B;
}
.en-migration__faq summary::before,
.en-migration__faq summary::after {
  content: "";
  height: 1em;
  width: 1em;
  flex-shrink: 0;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
}
.en-migration__faq summary::after {
  position: absolute;
  right: 0.2rem;
  top: 0.2rem;
  transition: transform 0.1s ease-in-out;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271em%27 height=%271em%27 viewBox=%270 0 20 21%27 fill=%27none%27%3E%3Crect x=%278.48633%27 y=%2719.0166%27 width=%2714%27 height=%272%27 transform=%27rotate%28-45 8.48633 19.0166%29%27 fill=%27%23F5D492%27 style=%27fill:%23F5D492;fill:color%28display-p3 0.9625 0.8298 0.5735%29;fill-opacity:1;%27/%3E%3Crect y=%2710.5312%27 width=%272%27 height=%2714%27 transform=%27rotate%28-45 0 10.5312%29%27 fill=%27%23F5D492%27 style=%27fill:%23F5D492;fill:color%28display-p3 0.9625 0.8298 0.5735%29;fill-opacity:1;%27/%3E%3C/svg%3E");
}
.en-migration__faq summary::before {
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%27http://www.w3.org/2000/svg%27 width=%271em%27 height=%271em%27 viewBox=%270 0 16 17%27 fill=%27none%27%3E%3Cpath d=%27M8 0.631836C12.4183 0.631836 16 4.21356 16 8.63184C16 13.0501 12.4183 16.6318 8 16.6318C3.58172 16.6318 0 13.0501 0 8.63184C0 4.21356 3.58172 0.631836 8 0.631836ZM7.55078 12.0996C7.19697 12.0996 6.91153 12.2155 6.69531 12.4473C6.47919 12.6679 6.37109 12.9713 6.37109 13.3574C6.37111 13.7436 6.47914 14.0525 6.69531 14.2842C6.91153 14.5159 7.19697 14.6318 7.55078 14.6318C7.92398 14.6318 8.21844 14.5157 8.43457 14.2842C8.65077 14.0525 8.75878 13.7436 8.75879 13.3574C8.75879 12.9712 8.65079 12.668 8.43457 12.4473C8.21844 12.2156 7.92404 12.0997 7.55078 12.0996ZM8.05176 2.63184C7.3638 2.63184 6.77363 2.7255 6.28223 2.91309C5.80075 3.10066 5.3734 3.33815 5 3.625L5.7373 5.21387C5.86503 5.1146 6.00785 5.02086 6.16504 4.93262C6.33202 4.83339 6.50387 4.75074 6.68066 4.68457C6.85746 4.60738 7.03414 4.55167 7.21094 4.51855C7.38784 4.47442 7.55564 4.45215 7.71289 4.45215C8.20388 4.4522 8.54275 4.56834 8.72949 4.7998C8.92598 5.03144 9.02434 5.34056 9.02441 5.72656C9.02441 6.02446 8.96074 6.28421 8.83301 6.50488C8.70529 6.71447 8.54315 6.91863 8.34668 7.11719C8.16002 7.31574 7.95349 7.52549 7.72754 7.74609C7.51132 7.95575 7.3146 8.20988 7.1377 8.50781C6.97063 8.7947 6.83753 9.14252 6.73926 9.55078C6.64106 9.94792 6.61691 10.4333 6.66602 11.0068H8.30176C8.30177 10.5436 8.37127 10.1631 8.50879 9.86523C8.64638 9.5673 8.81321 9.3076 9.00977 9.08691C9.20629 8.85524 9.42239 8.63999 9.6582 8.44141C9.89404 8.24282 10.1101 8.01644 10.3066 7.7627C10.5032 7.49787 10.6662 7.18347 10.7939 6.81934C10.9315 6.44419 11 5.97478 11 5.41211C10.9999 4.56276 10.7394 3.89001 10.2188 3.39355C9.6979 2.886 8.97551 2.63187 8.05176 2.63184Z%27 fill=%27%23F5D492%27 style=%27fill:%23F5D492;fill:color%28display-p3 0.9625 0.8298 0.5735%29;fill-opacity:1;%27/%3E%3C/svg%3E");
}
.en-migration__faq details {
  max-width: 75ch;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 0.25rem;
  padding: 1rem;
}
.en-migration__faq details[open] summary::after {
  transform: rotate(180deg);
}
.en-migration__faq .en-play-button {
  margin-top: 2rem;
}
.en-migration__faq details a {
  color: #fff;
  text-decoration: underline;
}
.en-migration__faq details a:hover,
.en-migration__faq details a:focus {
  color: #FEBE6B;
}
.en-welcome {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}
.en-welcome p {
  opacity: 0.8;
}
.en-welcome__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media only screen and (max-width: 760px) {
  .en-welcome__blocks {
    grid-template-columns: 1fr;
  }
}
.en-welcome__accent {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  background: rgba(12, 142, 255, 0.2);
  padding: 1rem;
  border-left: 3px solid #408CFF;
  gap: 1rem;
}
.en-welcome__accent p,
.en-welcome__accent h3 {
  margin: 0;
}
.en-welcome__link {
  color: #fff;
  transition: all 0.2s ease;
  text-decoration: underline;
}
.en-welcome__link:hover,
.en-welcome__link:focus {
  color: #FEBE6B;
}
.en-welcome__link:active {
  opacity: 0.6;
}
.en-complete {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
  position: relative;
}
.en-complete p {
  opacity: 0.8;
}
.en-complete__beam {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  max-width: 100vw;
  overflow: hidden;
  background-image: url(/modern-3/4723af36957ad9d149ac.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: contain;
  mix-blend-mode: lighten;
  pointer-events: none;
  z-index: 0;
}
@media only screen and (max-width: 760px) {
  .en-complete__beam {
    display: none;
  }
}
.en-complete__logos {
  display: flex;
  gap: 4rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
.en-complete__title {
  margin: 0px;
}
.en-complete__user {
  z-index: 10;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  border-radius: 0.5rem;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 0.5rem 1rem;
}
.en-complete__username {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.en-complete__texts {
  text-align: center;
  font-size: 20px;
  max-width: 65ch;
}
.en-complete > .en-play-button {
  gap: 8px;
}
.en-complete__pass {
  display: grid;
  max-width: 56rem;
  grid-template-columns: 1fr 1fr;
  border-radius: 0.2rem;
  margin-top: 3rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.07);
  background-image: url(/modern-3/97fa4be79b006e48949c.png);
  background-position: top right;
  background-repeat: no-repeat;
  background-size: 5rem;
}
.en-complete__pass .en-play-button {
  width: 100%;
}
@media only screen and (max-width: 760px) {
  .en-complete__pass {
    grid-template-columns: 1fr;
  }
}
.en-complete__pass-img img {
  width: 100%;
  object-fit: contain;
}
.en-complete__pass-texts {
  padding: 1rem 3rem 4rem;
}
@media only screen and (max-width: 760px) {
  .en-complete__pass-texts {
    padding: 0 1.5rem;
  }
}
.en-complete__android {
  color: #3F8CFF;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
.en-complete__store {
  display: grid;
  max-width: 56rem;
  grid-template-columns: 1fr 1fr;
  border-radius: 0.2rem;
  margin: 4rem 0 1rem;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.2);
  background-color: rgba(255, 255, 255, 0.07);
  background-image: url(/modern-3/3cd137e3758351a5973a.png);
  background-position: bottom right;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 760px) {
  .en-complete__store {
    background-image: none;
    grid-template-columns: 1fr;
  }
}
.en-complete__store-texts {
  padding: 1rem 2rem;
}
.en-complete__store-img {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.en-complete__store-img img {
  width: 100%;
  object-fit: contain;
}
.en-complete__link {
  color: #fff;
  transition: all 0.2s ease;
  text-decoration: underline;
}
.en-complete__link:hover,
.en-complete__link:focus {
  color: #FEBE6B;
}
.en-complete__link:active {
  opacity: 0.6;
}
*,
::after,
::before {
  box-sizing: border-box;
}
h1,
h2,
h3,
h4 {
  font-weight: normal;
}
html {
  font-size: 20px;
}
@media only screen and (max-width: 1600px) {
  html {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1200px) {
  html {
    font-size: 14px;
  }
}
body {
  --gc-base-bg-color: unset;
  --gc-base-font-size: 1rem;
  --gc-base-font-family: 'PT Sans', sans-serif;
  --gc-heading-font-family: 'Alumni Sans', sans-serif;
  --gc-text-color: rgba(255, 255, 255, 0.82);
  --gc-text-color-rgb: 220, 220, 220;
  --gc-accent-color: #ffb84f;
  --gc-glossary-bg-color: #122126;
  --gc-glossary-text-color: var(--gc-text-color);
  --gc-price-coin-outline-fill: #344348;
  --gc-slider-fader-gradient-color: #344348;
  --en-bg-rgb: 18, 33, 38;
  --en-bg-light-rgb: 39, 55, 61;
  --en-text-color-rgb: 255, 255, 255;
  --en-bg-color: rgb(var(--en-bg-rgb));
  --en-bg-light-color: rgb(var(--en-bg-light-rgb));
  --en-text-color: rgb(var(--en-text-color-rgb));
  --en-muted-text-color: rgba(var(--en-text-color-rgb), 0.7);
  --en-muted-border-color: rgba(var(--en-text-color-rgb), 0.1);
  --en-accent-color: #ffb84f;
  font-size: 16px;
  line-height: 24px;
  font-family: 'PT Sans', sans-serif;
  color: var(--en-text-color);
  background-color: var(--en-bg-color);
  margin: 11rem 0 0 !important;
  padding: 0;
}
body.m--light {
  --en-bg-rgb: var(--en-bg-light-rgb);
}
body.m--error-page {
  margin-top: 0 !important;
  background-image: url(/modern-3/d63bd8859d5c2dfa2c95.png);
  background-size: 4px;
}
@media only screen and (max-width: 1100px) {
  body {
    margin-top: 13rem !important;
  }
}
.en-container {
  position: relative;
  z-index: 1;
  margin: 0 auto;
  width: 100%;
  max-width: 1600px;
}
@media only screen and (max-width: 1920px) {
  .en-container {
    max-width: 1408px;
  }
}
@media only screen and (max-width: 1600px) {
  .en-container {
    max-width: 85vw;
  }
}
@media only screen and (max-width: 1024px) {
  .en-container {
    max-width: initial;
    padding-right: 2rem;
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 760px) {
  .en-container {
    padding-right: 1.6rem;
    padding-left: 1.6rem;
  }
}
@media only screen and (max-width: 500px) {
  .en-container {
    padding-right: 1.2rem;
    padding-left: 1.2rem;
  }
}
.en-gaijin-menu {
  margin: 0 auto;
  position: absolute;
  top: 0px;
  z-index: 1000;
  width: 100%;
}
en-replays-list {
  display: block;
  min-height: 30vh;
}
.m--outline {
  position: relative;
}
.m--outline::before {
  content: '';
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  position: absolute;
  z-index: 4;
  height: 100%;
  width: 100%;
  border: 0.25px solid var(--en-muted-border-color);
  transition: border-color 0.2s ease;
}
.m--outline.m--hoverable {
  cursor: pointer;
}
.m--outline.m--hoverable:hover::before,
.m--outline.m--hoverable:focus::before {
  border-color: var(--en-accent-color);
}
.os-windows .m--windows-hidden {
  display: none;
}

.gj-register-confirmed {
  position: relative;
}
.gj-register-confirmed__content {
  display: flex;
  padding: 40px 80px 0 0;
}
@media only screen and (max-width: 1024px) {
  .gj-register-confirmed__content {
    padding: 40px 60px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register-confirmed__content {
    padding: 20px 30px 40px;
  }
}
.gj-register-confirmed__left-block {
  padding-right: 60px;
  padding-left: 70px;
  background-image: url(/modern-3/dd1f914fcd079ce0314b.png);
  background-size: 110%;
  background-position: left 30px;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .gj-register-confirmed__left-block {
    display: none;
  }
}
.gj-register-confirmed__right-block {
  flex: 1;
  padding-bottom: 80px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .gj-register-confirmed__right-block {
    padding-bottom: 0px;
  }
}
.gj-register-confirmed__spaced-block {
  margin-bottom: 25px;
}
.gj-register-confirmed__header {
  font-size: 48px;
  line-height: 55px;
  margin-bottom: 5px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-confirmed__header {
    font-size: 36px;
    line-height: 44px;
  }
}
.gj-register-confirmed__subheader {
  font-size: 24px;
  line-height: 150%;
}
@media only screen and (max-width: 1024px) {
  .gj-register-confirmed__subheader {
    font-size: 20px;
    position: relative;
    padding-bottom: 160px;
  }
  .gj-register-confirmed__subheader::after {
    content: '';
    height: 200px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -50px;
    position: absolute;
    background-image: url(/modern-3/5f99a15fa896bf4ea201.png);
    background-size: 340px;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.gj-register-confirmed__main-text {
  font-size: 18px;
  line-height: 26px;
  padding-top: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .gj-register-confirmed__main-text {
    color: rgba(255, 255, 255, 0.7);
  }
}
.gj-register-confirmed__email {
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (max-width: 500px) {
  .gj-register-confirmed__email {
    font-size: 18px;
  }
}

.gj-reg-container {
  background-color: #202a33;
  background-color: var(--gj-register-background, #202a33);
  position: relative;
  color: #fff;
  border-radius: 4px;
  width: 100%;
}
@media only screen and (max-width: 500px) {
  .gj-reg-container {
    border-radius: 0px;
  }
}
.gj-reg-container * {
  box-sizing: border-box;
}
.gj-reg-content {
  font-family: 'Fira Sans', sans-serif;
  background-image: url(/modern-3/854e11cfe7bbb585dcaf.png);
  background-image: var(--gj-register-image, './images/form-background.png');
  font-size: 14px;
  background-position-y: top;
  background-size: cover;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 1024px) {
  .gj-reg-content.--change-bg {
    background-image: url(/modern-3/bc38079db4d96254d318.jpg) !important;
  }
}
@media only screen and (max-width: 500px) {
  .gj-reg-content.--change-bg {
    background-position: top center;
    background-size: 220%;
  }
}
.gj-reg-header-logo {
  display: flex;
  align-items: center;
}
.gj-reg-header-logo__image {
  background-image: url(/modern-3/e4ca0b5ddebb1f81dd9e.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  display: block;
  margin-right: 10px;
  width: 33px;
  height: 47px;
}
.gj-reg-header-logo.--pix .gj-reg-header-logo__image {
  background-image: url(/modern-3/142d2975251217dbfb67.svg);
  width: 36px;
  height: 36px;
}
.gj-reg-header-logo__subtitle {
  font-size: 18px;
  line-height: 24px;
  opacity: 0.7;
}
@media only screen and (max-width: 1024px) {
  .gj-reg-header-logo__subtitle {
    font-size: 14px;
  }
}
.gj-reg-header-logo__title {
  font-size: 24px;
  opacity: 0.7;
}
.gj-reg-link {
  cursor: pointer;
  color: #fff;
  text-decoration: underline;
  transition: all 0.1s ease-out;
}
.gj-reg-link.--orange {
  color: #ffaa08;
  color: var(--gj-register-accent, #ffaa08);
}
.gj-reg-link:hover,
.gj-reg-link:focus {
  color: rgba(255, 170, 8, 0.8);
  color: rgba(var(--gj-register-accent-rgb, 255, 170, 8), 0.8);
}
.gj-reg-link:active {
  color: rgba(255, 170, 8, 0.7);
  color: rgba(var(--gj-register-accent-rgb, 255, 170, 8), 0.7);
}
.gj-reg-close {
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.08);
  background-image: url(/modern-3/cd6c79ae40913f80efbf.svg);
  background-size: 14px 14px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  border-radius: 0px 0px 0px 4px;
  z-index: 5;
  right: 0;
  top: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease-out;
}
.gj-reg-close.--back {
  background-image: url(/modern-3/b429d59b24ef2540148e.svg);
}
.gj-reg-close:hover,
.gj-reg-close:focus {
  opacity: 1;
}
.gj-reg-close:active {
  opacity: 0.6;
}
.gj-reg-button {
  cursor: pointer;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #fff;
  margin: 0;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  outline: none;
  background-color: transparent;
  min-width: 220px;
  height: 56px;
  font-size: 21px;
  flex-shrink: 0;
  font-weight: 300;
  border-radius: 3px;
  letter-spacing: 2.5px;
  transition: all 0.2s ease-out;
  text-transform: uppercase;
}
.gj-reg-button:hover,
.gj-reg-button:focus {
  opacity: 1;
}
.gj-reg-button:hover.--filled,
.gj-reg-button:focus.--filled {
  box-shadow: 0 0 13px #db835d;
  box-shadow: 0 0 13px var(--gj-register-button-shadow);
}
.gj-reg-button:hover.--outline,
.gj-reg-button:focus.--outline {
  border-color: #fff;
}
.gj-reg-button:active {
  opacity: 0.8;
}
.gj-reg-button:disabled,
.gj-reg-button.--disabled {
  pointer-events: none;
  opacity: 0.6 !important;
}
.gj-reg-button.--small {
  height: 46px;
}
.gj-reg-button.--filled {
  background: #db835d;
  background: var(--gj-register-button-background, #db835d);
  font-family: 'Fira Sans Condensed', sans-serif;
  height: 64px;
  font-weight: 500;
  min-width: 350px;
  font-size: 32px;
  text-shadow: 0px 1px 0px #FFD18B;
  color: #112227;
  border-radius: 4px;
  box-shadow: 0px 6px 21px rgba(8, 15, 34, 0.88);
  border-top: 1px solid #FFEDC9;
  border-bottom: 1px solid rgba(134, 59, 27, 0.46);
}
@media only screen and (max-width: 760px) {
  .gj-reg-button.--filled {
    font-size: 26px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-reg-button.--filled {
    min-width: 100%;
    height: 56px;
    font-size: 24px;
    line-height: 24px;
  }
}
.gj-reg-button.--outline {
  border-radius: 4px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  height: 64px;
  min-width: 350px;
  font-size: 32px;
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 500;
}
@media only screen and (max-width: 760px) {
  .gj-reg-button.--outline {
    font-size: 26px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-reg-button.--outline {
    min-width: 100%;
    height: 56px;
    font-size: 24px;
    line-height: 24px;
  }
}
.gj-reg-button.--loading {
  pointer-events: none;
  opacity: 0.4 !important;
}
.gj-reg-button.--loading:before {
  content: '';
  background-image: url(/modern-3/430fc2eb2b9556d6f006.gif);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  margin: 0 20px;
  opacity: 0.5;
}

.gj-register-detect {
  position: relative;
}
.gj-register-detect__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 40px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-detect__content {
    padding: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register-detect__content {
    padding: 20px;
  }
}
.gj-register-detect__emoji {
  background-image: url(/modern-3/48f55cc6cb679b5184f7.png);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  flex-shrink: 0;
}
.gj-register-detect__os {
  font-size: 24px;
  line-height: 30px;
  margin-bottom: 20px;
}
.gj-register-detect__text {
  font-size: 18px;
  line-height: 32px;
  margin-bottom: 30px;
  font-family: 'PT Serif', serif;
  max-width: 400px;
  color: rgba(255, 255, 255, 0.7);
}
.gj-register-detect__hint {
  margin-bottom: 10px;
}
.gj-register-detect__error-hint {
  font-size: 14px;
  opacity: 0.5;
  max-width: 320px;
  margin-top: 20px;
}
.gj-register-detect__input {
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  text-align: center;
  border: none;
  height: 46px;
  font-weight: 300;
  background: none;
  border: 0;
  color: #fff;
  width: 100%;
  outline: none;
}
.gj-register-detect__button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #fff;
  margin: 10px 0;
  padding: 0 30px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  outline: none;
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.5);
  min-width: 300px;
  height: 48px;
  font-size: 16px;
  line-height: 24px;
  opacity: 0.8;
  transition: all 0.2s ease-out;
}
@media only screen and (max-width: 500px) {
  .gj-register-detect__button {
    min-width: 100%;
  }
}
.gj-register-detect__button.--copy {
  background-image: url(/modern-3/7e0927cf215dfc12fa63.svg);
  background-position: calc(100% - 12px) center;
  animation: scaleIn 0.3s ease-out;
}
.gj-register-detect__button.--copy-error {
  pointer-events: none;
  background-color: #793434;
  border-color: #793434;
  animation: scaleIn 0.3s ease-out;
}
.gj-register-detect__button.--copy-done {
  background-image: url(/modern-3/7d12b1fbbc43fb880fe8.svg);
  background-position: calc(100% - 12px) center;
  pointer-events: none;
  background-color: #356654;
  border-color: #356654;
  opacity: 1;
  animation: scaleIn 0.3s ease-out;
}
.gj-register-detect__button.--ps5 {
  background-image: url(/modern-3/e21ddf57ad7585721fe9.svg);
}
.gj-register-detect__button.--xbox {
  background-image: url(/modern-3/bf225661e0309a53f6dc.svg);
}
.gj-register-detect__button:hover,
.gj-register-detect__button:focus {
  opacity: 1;
  border-color: rgba(255, 255, 255, 0.6);
}
.gj-register-detect__button:active {
  opacity: 0.6;
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
  }
  to {
    transform: scale(1);
  }
}

.gj-register-downloading__content {
  text-align: center;
  padding-top: 150px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 1024px) {
  .gj-register-downloading__content {
    padding-top: 100px;
  }
}
@media only screen and (max-width: 760px) {
  .gj-register-downloading__content {
    padding-top: 50px;
  }
}
.gj-register-downloading__title {
  font-family: 'Playfair Display', serif;
  font-feature-settings: 'pnum' on, 'lnum' on;
  font-size: 64px;
  line-height: 73px;
  text-align: center;
  text-transform: uppercase;
  margin: 0 100px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-downloading__title {
    margin: 0 20px;
    font-size: 48px;
    line-height: 56px;
  }
}
@media only screen and (max-width: 760px) {
  .gj-register-downloading__title {
    font-size: 34px;
    line-height: 48px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register-downloading__title {
    font-size: 24px;
    line-height: 34px;
  }
}
.gj-register-downloading__steps {
  display: flex;
  justify-content: center;
  padding: 55px 20px;
}
@media only screen and (max-width: 760px) {
  .gj-register-downloading__steps {
    align-items: center;
    flex-direction: column;
  }
}
.gj-register-downloading__step {
  font-family: Fira Sans;
  font-style: normal;
  font-weight: 500;
  font-size: 24px;
  line-height: 24px;
  text-align: center;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  padding: 15px 10px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-downloading__step {
    font-size: 20px;
    line-height: 36px;
    padding: 5px 10px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register-downloading__step {
    font-size: 18px;
    line-height: 24px;
  }
}
.gj-register-downloading__step:before {
  content: '';
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  margin-right: 17px;
  flex-shrink: 0;
}
.gj-register-downloading__step.--icon:before {
  height: 32px;
  width: 32px;
  background-image: url(/modern-3/23015bda5b745b13a634.png);
  filter: drop-shadow(0px 8px 12px rgba(43, 0, 0, 0.54));
}
@media only screen and (max-width: 760px) {
  .gj-register-downloading__step.--icon {
    flex-direction: column;
  }
  .gj-register-downloading__step.--icon:before {
    margin-right: 0;
    margin-bottom: 17px;
  }
}
.gj-register-downloading__step.--arrow:before {
  height: 25px;
  width: 25px;
  background-image: url(/modern-3/c981356e3e26a17a4dd5.svg);
}
.gj-register-downloading__footer {
  font-size: 16px;
  line-height: 32px;
  color: #97A8A9;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
@media only screen and (max-width: 760px) {
  .gj-register-downloading__footer {
    font-size: 14px;
    line-height: 24px;
  }
}
.gj-register-downloading__footer a {
  color: #97A8A9;
  transition: color 0.2s ease;
}
.gj-register-downloading__footer a:hover,
.gj-register-downloading__footer a:focus {
  color: #74d5e2;
  color: var(--gj-register-accent, #74d5e2);
}

.gj-register-packs {
  font-family: 'Fira Sans', sans-serif;
  display: flex;
  position: relative;
  width: 100%;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}
@media only screen and (max-width: 960px) {
  .gj-register-packs {
    flex-direction: column;
    border-left: none;
    padding-bottom: 140px;
  }
}
@media only screen and (max-width: 600px) {
  .gj-register-packs {
    padding-bottom: 170px;
  }
}
@media only screen and (max-width: 400px) {
  .gj-register-packs {
    padding-bottom: 200px;
  }
}
.gj-register-packs::after,
.gj-register-packs::before {
  content: '';
  position: absolute;
  left: 0;
  height: 100%;
  width: 100%;
  background-size: contain;
  background-repeat: no-repeat;
}
.gj-register-packs::after {
  top: 1px;
  background-image: url(/modern-3/05227ecd34f67ba60cee.png);
}
.gj-register-packs::before {
  bottom: 1px;
  background-image: url(/modern-3/d45385b55cee7296c49a.png);
}
@media only screen and (max-width: 960px) {
  .gj-register-packs::before {
    display: none;
  }
}
.gj-register-packs__sidebar {
  position: relative;
  z-index: 1;
  flex: 1;
  height: 100%;
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__sidebar {
    position: unset;
  }
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__sidebar-header {
    display: flex;
  }
}
@media only screen and (max-width: 600px) {
  .gj-register-packs__sidebar-header {
    flex-direction: column;
  }
}
.gj-register-packs__sidebar-logo {
  flex: 1;
}
.gj-register-packs__line {
  height: 1px;
  max-width: 320px;
  width: 100%;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
  position: absolute;
  left: 0;
}
.gj-register-packs__line.--top {
  top: 0;
}
.gj-register-packs__line.--bottom {
  bottom: 0;
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__line.--bottom {
    display: none;
  }
}
.gj-register-packs__email {
  padding: 30px;
  padding-right: 10px;
  font-size: 20px;
  line-height: 32px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__email {
    padding: 20px;
    font-size: 14px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 1100px) {
  .gj-register-packs__email {
    font-size: 12px;
    line-height: 20px;
  }
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__email {
    padding-top: 10px;
  }
}
.gj-register-packs__email-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}
@media only screen and (max-width: 1100px) {
  .gj-register-packs__email-text {
    margin-bottom: 0;
  }
}
.gj-register-packs__last {
  padding: 20px 20px 20px 30px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  flex: 1;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  background-image: url(/modern-3/a2c43408bedf562ef2c3.png);
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__last {
    padding: 12px 20px;
  }
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__last {
    background-image: url(/modern-3/c81167c1a10200439edf.png);
    text-align: center;
    padding: 0 0 10px;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 600px) {
  .gj-register-packs__last {
    padding: 10px 10px 40px;
    margin: 0 20px 20px;
  }
}
.gj-register-packs__last-title {
  color: #FFD595;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 8px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__last-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1100px) {
  .gj-register-packs__last-title {
    font-size: 20px;
    line-height: 28px;
  }
}
.gj-register-packs__last-text {
  font-size: 20px;
  line-height: 24px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__last-text {
    font-size: 14px;
    line-height: 18px;
  }
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__last-text {
    padding: 0 40px;
  }
}
.gj-register-packs__stars {
  padding: 30px;
  margin-top: 10px;
  font-family: 'PT Serif', serif;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__stars {
    padding: 20px;
  }
}
@media only screen and (max-width: 960px) {
  .gj-register-packs__stars {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
  }
}
.gj-register-packs__star {
  display: flex;
  font-size: 16px;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__star {
    font-size: 12px;
    line-height: 16px;
    margin-bottom: 15px;
  }
}
.gj-register-packs__star::before {
  content: '';
  display: block;
  background-image: url(/modern-3/a2b67d5cf8cbb86b1891.svg);
  background-repeat: no-repeat;
  background-size: contain;
  flex-shrink: 0;
  height: 24px;
  width: 24px;
  margin-right: 16px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__star::before {
    margin-right: 12px;
    height: 16px;
    width: 16px;
  }
}
.gj-register-packs__pack {
  position: relative;
  flex: 1;
  margin-left: 30px;
  background-image: url(/modern-3/08a261c703134b925be8.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 760px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack {
    margin-left: 20px;
    height: 540px;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 400px) {
  .gj-register-packs__pack {
    margin-left: 15px;
  }
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack {
    height: auto;
    margin: 8px 0;
    background-color: #202A33;
    background-image: none;
  }
  .gj-register-packs__pack.--alt {
    display: flex;
    justify-content: flex-end;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack {
    margin: 8px;
  }
}
@media only screen and (max-width: 400px) {
  .gj-register-packs__pack {
    margin: 0 15px;
  }
  .gj-register-packs__pack.--hide-mobile {
    display: none;
  }
}
.gj-register-packs__pack::after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.gj-register-packs__pack-content {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 100%;
  z-index: 1;
  padding: 15px 35px 40px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-content {
    padding: 15px 15px 20px;
  }
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-content {
    flex-direction: row;
    padding: 20px 15px 20px 30px;
  }
  .gj-register-packs__pack-content.--alt {
    padding: 30px 15px 30px 0;
    flex-direction: column;
    position: unset;
    width: 50%;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack-content {
    padding: 10px;
  }
}
.gj-register-packs__pack-header {
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-info {
    flex: 1;
  }
}
.gj-register-packs__pack-bg {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center top;
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-bg {
    background-position: left top;
  }
  .gj-register-packs__pack-bg::after {
    content: '';
    background: linear-gradient(270deg, #202A33 0%, rgba(32, 42, 51, 0) 100%);
    position: absolute;
    display: block;
    width: 130px;
    height: 100%;
    right: 0;
    top: 0;
    bottom: 0;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack-bg {
    width: 70%;
    background-position: right top;
    background-size: cover;
  }
}
.gj-register-packs__pack-bg.--pack-1 {
  background-image: url(/modern-3/097c3230d830f52b0de1.jpg);
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-bg.--pack-1 {
    background-image: url(/modern-3/7295c661e912c07545fa.jpg);
  }
}
.gj-register-packs__pack-bg.--pack-2 {
  background-image: url(/modern-3/9166c9e6a3e2ddad0f99.jpg);
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-bg.--pack-2 {
    background-image: url(/modern-3/27c09ffe2a14a8f1a8a7.jpg);
  }
}
.gj-register-packs__pack-bg.--pack-3 {
  background-image: url(/modern-3/a3af6e61216ee4ed4698.jpg);
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-bg.--pack-3 {
    background-image: url(/modern-3/50f2d7d08457ba0a45f0.jpg);
  }
}
.gj-register-packs__pack-title {
  font-family: 'Fira Sans Condensed', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FED18F;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-title {
    font-size: 24px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 400px) {
  .gj-register-packs__pack-title {
    font-size: 20px;
    line-height: 28px;
  }
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-title {
    font-size: 24px;
    line-height: 28px;
    text-align: left !important;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack-title {
    font-size: 18px;
    line-height: 22px;
  }
}
.gj-register-packs__pack-title.--center {
  text-align: center;
}
.gj-register-packs__pack-title.--alt {
  font-size: 24px;
  line-height: 32px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-title.--alt {
    font-size: 18px;
    line-height: 24px;
  }
}
.gj-register-packs__pack-country {
  text-transform: uppercase;
  color: #FED18F;
  font-size: 24px;
  line-height: 28px;
  flex: 1;
  margin-top: 5px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-country {
    font-size: 18px;
    line-height: 24px;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack-country {
    font-size: 14px;
    line-height: 18px;
  }
}
.gj-register-packs__pack-country.--center {
  text-align: center;
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-country.--center {
    text-align: left !important;
  }
}
.gj-register-packs__pack-country.--alt {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
}
.gj-register-packs__pack-flag {
  height: 48px;
  width: 48px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-flag {
    height: 32px;
    width: 32px;
  }
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-flag {
    margin-bottom: 10px;
  }
}
.gj-register-packs__pack-flag.--alt {
  height: 32px;
  width: 32px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-flag.--alt {
    height: 24px;
    width: 24px;
  }
}
.gj-register-packs__pack-flag.--pack-1 {
  background-image: url(/modern-3/ae73541028fa2a9f1ce8.svg);
}
.gj-register-packs__pack-flag.--pack-2 {
  background-image: url(/modern-3/6a586d54997e8844a312.svg);
}
.gj-register-packs__pack-flag.--pack-3 {
  background-image: url(/modern-3/26ba7188ae1411238caa.svg);
}
.gj-register-packs__pack-subtitle,
.gj-register-packs__pack-text {
  font-family: 'PT Serif', serif;
  font-size: 16px;
  line-height: 24px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-subtitle,
  .gj-register-packs__pack-text {
    font-size: 12px;
    line-height: 16px;
  }
}
.gj-register-packs__pack-subtitle {
  margin-top: 25px;
  margin-bottom: 5px;
  text-transform: uppercase;
  color: #FED18F;
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-subtitle {
    margin-top: 0;
  }
}
.gj-register-packs__pack-text {
  color: rgba(255, 255, 255, 0.7);
  min-height: 48px;
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-text {
    margin-bottom: 20px;
    min-height: auto;
  }
}
.gj-register-packs__pack-weapon {
  height: 130px;
  width: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-weapon {
    height: 90px;
  }
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-weapon {
    position: absolute;
    width: 180px;
    bottom: 10px;
    left: 90px;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack-weapon {
    width: 130px;
    bottom: 0;
    left: 60px;
  }
}
.gj-register-packs__pack-weapon.--alt {
  height: 50px;
  width: 105px;
  margin-left: 10px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-weapon.--alt {
    height: 35px;
    width: 70px;
  }
}
.gj-register-packs__pack-weapon.--pack-1 {
  background-image: url(/modern-3/628f0e8137673b4fe633.png);
}
.gj-register-packs__pack-weapon.--pack-2 {
  background-image: url(/modern-3/8e07b110933a4f8a358b.png);
}
.gj-register-packs__pack-weapon.--pack-3 {
  background-image: url(/modern-3/e330413b1a526cb22edd.png);
}
.gj-register-packs__pack-button {
  min-width: 100% !important;
  width: auto;
  margin: 20px -10px 0;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs__pack-button {
    margin: 10px 0;
    letter-spacing: 0.05em;
    height: 48px !important;
    font-size: 24px !important;
  }
}
@media only screen and (max-width: 1100px) and (min-width: 400px) {
  .gj-register-packs__pack-button {
    font-size: 20px !important;
  }
}
@media only screen and (max-width: 960px) and (min-width: 400px) {
  .gj-register-packs__pack-button {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 600px) and (min-width: 400px) {
  .gj-register-packs__pack-button {
    height: 40px !important;
    font-size: 16px !important;
  }
}
.gj-register-packs__pack-button span {
  height: 16px;
  width: 16px;
  margin: 0 8px;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url(/modern-3/24648fb1b5e5c807e24e.svg);
}
.gj-register-packs__pack-price {
  font-weight: 400;
}
.gj-register-packs .gj-reg-close {
  left: 0;
  right: unset;
  border-radius: 0;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs .gj-reg-close {
    height: 24px;
    width: 24px;
  }
}
.gj-register-packs .gj-reg-header-logo {
  padding: 30px;
}
@media only screen and (max-width: 1700px) {
  .gj-register-packs .gj-reg-header-logo {
    padding: 20px;
  }
}
@media only screen and (max-width: 960px) {
  .gj-register-packs .gj-reg-header-logo {
    padding-bottom: 10px;
  }
}
@media only screen and (min-width: 1701px) {
  .gj-register-packs .gj-reg-header-logo__image {
    width: 50px;
    height: 70px;
  }
  .gj-register-packs .gj-reg-header-logo__subtitle {
    font-size: 24px;
    line-height: 32px;
  }
  .gj-register-packs .gj-reg-header-logo__title {
    font-size: 32px;
    line-height: 40px;
  }
}
#gj-register-packs__swiper {
  display: none;
  width: 100%;
}
#gj-register-packs__swiper .swiper-slide {
  padding-bottom: 20px;
}
#gj-register-packs__swiper .swiper-pagination {
  bottom: -5px;
}
#gj-register-packs__swiper .swiper-pagination-bullet {
  border: 1px solid #fff;
  opacity: 1;
}
@media only screen and (max-width: 400px) {
  #gj-register-packs__swiper {
    display: block;
  }
}

.gj-register-account {
  display: flex;
  padding: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 12px;
  align-self: stretch;
  border-radius: 3px;
  background: var(--bg_dark, rgba(3, 12, 21, 0.4));
}
.gj-register-account__profile {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
.gj-register-account__icon {
  display: flex;
  width: 48px;
  height: 48px;
  padding: 8px;
  justify-content: center;
  align-items: center;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.gj-register-account__icon.m--gaijin {
  background-image: url(/modern-3/e4ca0b5ddebb1f81dd9e.png);
  border-radius: 2px;
}
.gj-register-account__icon.m--pix {
  background-image: url(/modern-3/142d2975251217dbfb67.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--amazon {
  background-color: #003087;
  border-radius: 2px;
}
.gj-register-account__icon.m--apple {
  background-image: url(/modern-3/84f55163f36fdfbbce61.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--artstorm {
  background-image: url(/modern-3/25e42aa24c9ef3d33e78.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--facebook {
  background-image: url(/modern-3/758760b9ac677401e4be.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--google {
  background-image: url(/modern-3/366e3ed5532684a421e7.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--googleplay {
  background-image: url(/modern-3/cb955530401a1b885d23.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--live {
  background-color: #107C10;
  background-image: url(/modern-3/f2937e7edddf07bb30e1.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--psn {
  background-color: #003087;
  background-image: url(/modern-3/34b4622d8e21a143e0c6.svg);
  border-radius: 2px;
}
.gj-register-account__icon.m--steam {
  background-image: url(/modern-3/b68a5f7d3c28385bcf10.svg);
  border-radius: 2px;
}
.gj-register-account__username {
  color: var(--white, #FFF);
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 120% */
}
.gj-register-account__type {
  color: var(--white_contrast_medium, rgba(255, 255, 255, 0.7));
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  /* 171.429% */
}
.gj-register-account__change-account-btn {
  display: flex;
  padding: 4px 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  align-self: stretch;
  border-radius: 2px;
  border: 1px solid var(--white_medium, rgba(255, 255, 255, 0.5));
  text-decoration: none;
  color: var(--white_contrast_medium, rgba(255, 255, 255, 0.7));
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  letter-spacing: 1.6px;
  text-transform: uppercase;
}
.gj-register-account__change-account-btn:hover {
  opacity: 0.8;
}
.gj-register-account__change-account-btn:active {
  opacity: 0.7;
}

.gj-register-success__content {
  display: flex;
  padding: 40px 80px 0px 0px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__content {
    padding: 40px 60px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register-success__content {
    padding: 30px;
  }
}
.gj-register-success__left-block {
  padding-right: 60px;
  padding-left: 70px;
  background-image: url(/modern-3/d371d8fb80c7fd6c422d.png);
  background-size: 110%;
  background-position: left 30px;
  background-repeat: no-repeat;
  position: relative;
  z-index: 1;
}
.gj-register-success__left-block.--no-bg {
  background: none;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__left-block {
    display: none;
  }
}
.gj-register-success__right-block {
  flex: 1;
  padding-bottom: 55px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__right-block {
    padding-bottom: 0px;
  }
}
.gj-register-success__spaced-block {
  margin-bottom: 20px;
}
.gj-register-success__gap {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__gap {
    gap: 20px;
  }
}
.gj-register-success__header {
  font-size: 48px;
  margin-bottom: 3px;
  line-height: 56px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__header {
    font-size: 36px;
    line-height: 44px;
  }
}
.gj-register-success__subheader {
  font-size: 24px;
  line-height: 150%;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__subheader {
    font-size: 20px;
  }
}
.gj-register-success__text {
  font-weight: 300;
  font-size: 18px;
  line-height: 22px;
}
.gj-register-success__text p {
  margin: 10px 0;
}
.gj-register-success__text.--small {
  font-size: 14px;
}
.gj-register-success__text.--faded {
  color: rgba(255, 255, 255, 0.75);
}
.gj-register-success__main-text {
  font-size: 18px;
  line-height: 23px;
  padding-top: 20px;
  font-weight: 300;
}
@media only screen and (max-width: 1024px) {
  .gj-register-success__main-text {
    position: relative;
    padding-top: 0px;
    padding-bottom: 160px;
    color: rgba(255, 255, 255, 0.7);
  }
  .gj-register-success__main-text::after {
    content: '';
    height: 200px;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -50px;
    position: absolute;
    background-image: url(/modern-3/4787b8a6d38b602bfda7.png);
    background-size: 340px;
    background-position: center;
    background-repeat: no-repeat;
  }
}
.gj-register-success__email {
  font-size: 24px;
  line-height: 30px;
}
@media only screen and (max-width: 500px) {
  .gj-register-success__email {
    font-size: 18px;
  }
}

.gj-register__done-art {
  position: absolute;
  background-image: url(/modern-3/ca45bf4087b84f5dc7f8.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
@media only screen and (max-width: 1024px) {
  .gj-register__done-art {
    display: none;
  }
}
.gj-register__content {
  padding: 40px 70px 60px 130px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__content {
    padding: 40px 60px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__content {
    padding: 20px 30px 40px;
  }
}
.gj-register__content.--pix {
  padding: 40px 70px 60px 70px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__content.--pix {
    padding: 40px 60px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__content.--pix {
    padding: 20px 30px 40px;
  }
}
.gj-register__header {
  cursor: default;
  display: flex;
  position: relative;
  justify-content: space-between;
}
@media only screen and (max-width: 1024px) {
  .gj-register__header {
    justify-content: center;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__header {
    font-size: 20px;
  }
}
.gj-register__header-back {
  cursor: pointer;
  background-image: url(/modern-3/a491acf7c0bd40b34218.svg);
  background-size: 14px 25px;
  background-position: left center;
  background-repeat: no-repeat;
  height: 30px;
  width: 20px;
  position: absolute;
  top: calc(50% - 15px);
  left: 0;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .gj-register__header-back {
    display: block;
  }
}
.gj-register__header-divider {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(166, 221, 255, 0.1);
  margin: 20px -60px;
  display: none;
}
@media only screen and (max-width: 1024px) {
  .gj-register__header-divider {
    display: block;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__header-divider {
    margin: 20px -30px;
  }
}
.gj-register__login {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .gj-register__login {
    display: none;
  }
}
.gj-register__login-text {
  flex-shrink: 0;
  font-weight: 300;
  margin-right: 15px;
  line-height: 21px;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}
.gj-register__title {
  font-size: 38px;
  color: rgba(255, 255, 255, 0.7);
  margin: 40px 0 5px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__title {
    display: none;
  }
}
.gj-register__blocks {
  display: flex;
}
@media only screen and (max-width: 1024px) {
  .gj-register__blocks {
    flex-direction: column-reverse;
  }
}
.gj-register__left-block {
  flex: 1;
  min-width: 350px;
  z-index: 2;
  margin-right: 80px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__left-block {
    padding: 0;
    margin: 0;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__left-block {
    min-width: auto;
  }
}
.gj-register__right-block {
  flex: 1;
  display: flex;
  flex-flow: column;
  z-index: 2;
}
.gj-register__captcha {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  height: 46px;
  min-width: 165px;
  position: relative;
}
.gj-register__captcha::before {
  content: '';
  border-top: 23px solid transparent;
  border-bottom: 23px solid transparent;
  border-right: 23px solid #040204;
}
.gj-register__captcha img {
  box-shadow: none;
  height: 46px !important;
}
.gj-register__captcha gj-captcha {
  width: 100%;
  background-color: #040204;
}
.gj-register__captcha gj-captcha .gj-captcha {
  justify-content: space-between;
}
.gj-register__hint {
  cursor: default;
  font-size: 14px;
  line-height: 18px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 300;
}
.gj-register__input {
  font-size: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: none;
  height: 46px;
  font-weight: 300;
  background-color: rgba(3, 12, 21, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px 0 4px;
  width: 100%;
  outline: none;
  transition: border-bottom-color 0.1s ease-out;
}
.gj-register__input::-webkit-input-placeholder,
.gj-register__input::-moz-placeholder,
.gj-register__input:-moz-placeholder,
.gj-register__input:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.005) !important;
}
@media only screen and (max-width: 1024px) {
  .gj-register__input {
    background-color: transparent;
  }
}
.gj-register__checkbox {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  flex-shrink: 0;
  outline: none;
  height: 30px;
  width: 30px;
  background-color: rgba(3, 12, 21, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.2s ease-out;
}
.gj-register__checkbox::before {
  content: '';
  filter: none;
  filter: var(--gj-register-accent-filter, none);
  background-image: url(/modern-3/fba7eb7d203ac904c74b.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 4px;
  top: 3px;
  height: 20px;
  width: 20px;
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
.gj-register__checkbox:checked::before {
  opacity: 1;
}
.gj-register__label {
  cursor: pointer;
  line-height: 21px;
  font-weight: 300;
}
.gj-register__platforms {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media only screen and (max-width: 1024px) {
  .gj-register__platforms {
    display: none;
  }
}
.gj-register__redeem-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.gj-register__redeem-block-title {
  color: rgba(255, 255, 255, 0.8);
  font-family: "Fira Sans";
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  line-height: 30px;
  /* 142.857% */
  text-transform: uppercase;
  margin: 5px 0px 0px 0px;
}
.gj-register__redeem-btn {
  margin-top: 20px;
  border-radius: 4px;
  background: linear-gradient(180deg, #febe6b 0%, #d88756 100%);
  padding: 12px 16px;
  position: relative;
  color: #112227;
  text-decoration: none;
  text-shadow: 0px 1px 0px #ffd18b;
  font-size: 32px;
  font-style: normal;
  font-weight: 600;
  line-height: 54px;
  /* 100% */
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  transition: all 0.1s ease-out;
}
.gj-register__redeem-btn::before {
  content: " ";
  position: absolute;
  top: 0px;
  left: 0px;
  height: 1px;
  width: 100%;
  background-color: #ffedc9;
}
.gj-register__redeem-btn::after {
  content: " ";
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 2px;
  width: 100%;
  background-color: rgba(134, 59, 27, 0.46);
}
.gj-register__redeem-btn:hover {
  box-shadow: 0px 0px 48px 0px rgba(255, 111, 66, 0.6);
}
.gj-register__redeem-btn:active {
  opacity: 0.7;
}
.gj-register__redeem-btn.m--disabled {
  pointer-events: none;
  opacity: 0.7;
}
.gj-register__platform-button {
  cursor: pointer;
  text-decoration: none;
  color: #fff;
  margin-top: 15px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  outline: none;
  background-color: transparent;
  font-weight: 300;
  height: 44px;
  font-size: 16px;
  opacity: 0.5;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s ease-out;
}
.gj-register__platform-button:hover,
.gj-register__platform-button:focus {
  opacity: 1;
}
.gj-register__platform-button:active {
  opacity: 0.7;
}
.gj-register__platform-button::before {
  content: '';
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  margin-right: 12px;
}
.gj-register__platform-button.--steam::before {
  background-image: url(/modern-3/7c7aa8f7b7cf23249c72.svg);
}
.gj-register__platform-button.--xbox::before {
  background-image: url(/modern-3/652104d5dce0da67cdd3.svg);
}
.gj-register__platform-button.--ps4::before {
  background-image: url(/modern-3/ad78c90ec47872733e04.svg);
}
.gj-register__expandable {
  cursor: pointer;
  height: 40px;
  line-height: 21px;
  overflow: hidden;
  position: relative;
  font-weight: 300;
}
.gj-register__expandable::before,
.gj-register__expandable::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 1;
  transition: opacity 0.2s ease-out;
}
.gj-register__expandable::before {
  background: linear-gradient(to bottom, rgba(32, 42, 51, 0), #202a33);
}
.gj-register__expandable::after {
  filter: none;
  filter: var(--gj-register-accent-filter, none);
  background-image: url(/modern-3/f3055af6ad488760e562.png);
  background-size: 15px;
  background-position: center bottom;
  background-repeat: no-repeat;
  z-index: 1;
}
.gj-register__expandable.--expanded {
  height: auto;
}
.gj-register__expandable.--expanded::before,
.gj-register__expandable.--expanded::after {
  visibility: hidden;
  opacity: 0;
}
.gj-register__spacer {
  min-height: 25px;
  padding-bottom: 4px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__spacer {
    min-height: 20px;
    padding-bottom: 2px;
  }
}
.gj-register__spaced-block {
  margin-bottom: 25px;
}
.gj-register__spaced-block.--shrinked {
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__spaced-block {
    margin-bottom: 20px;
  }
}
.gj-register__form-header {
  font-size: 24px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 17px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__form-header {
    font-size: 20px;
  }
}
.gj-register__row {
  display: flex;
  margin: 0 -10px;
}
@media only screen and (max-width: 500px) {
  .gj-register__row.--multi-column {
    flex-flow: column;
  }
  .gj-register__row.--multi-column .gj-register__col {
    margin-bottom: 20px;
    min-height: 50px;
    flex: 0;
  }
  .gj-register__row.--multi-column .gj-register__col:last-child {
    margin-bottom: 0;
  }
}
.gj-register__col {
  display: flex;
  flex-flow: column;
  margin: 0 10px;
  flex-basis: 100%;
  position: relative;
}
.gj-register__col.--invalid {
  margin-bottom: 5px;
}
.gj-register__col.--invalid input:not([type="checkbox"]):focus {
  border-bottom-width: 2px;
  border-bottom-color: #ffaa08;
  border-bottom-color: var(--gj-register-accent, #ffaa08);
}
.gj-register__col.--invalid input[type="checkbox"] {
  border-color: #ffaa08;
  border-color: var(--gj-register-accent, #ffaa08);
}
.gj-register__col.--invalid.--touched input:not([type="checkbox"]) {
  border-bottom-width: 2px;
  border-bottom-color: #dc031f;
}
.gj-register__col.--invalid.--touched input:not([type="checkbox"]).--soft-invalid {
  border-bottom-color: rgba(255, 255, 255, 0.5);
}
.gj-register__col.--invalid.--touched input[type="checkbox"] {
  border-color: #dc031f;
}
.gj-register__col:not(.--no-check).--valid::after {
  content: '';
  background-image: url(/modern-3/a5bce2c3598921125774.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  right: 15px;
  height: 100%;
  width: 10px;
}
.gj-register__col.--shrinked {
  flex: auto;
}
.gj-register__bonus {
  flex: 1;
}
.gj-register__bonus-title {
  font-size: 21px;
  line-height: 30px;
  text-transform: uppercase;
  color: #FFD49F;
  margin-bottom: 10px;
}
.gj-register__bonus-item {
  background-color: rgba(3, 12, 21, 0.3);
  border-radius: 5px;
  margin-bottom: 8px;
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: 0 2px 3px rgba(3, 12, 21, 0.1);
  display: flex;
  align-items: stretch;
}
.gj-register__bonus-item.m--bonus-1 {
  background-image: url(/modern-3/aa92f7d6329cfe8d2e68.png);
  flex-direction: column-reverse;
}
.gj-register__bonus-item.m--bonus-1__bonus-header {
  order: 1;
}
.gj-register__bonus-item.m--bonus-1__bonus-img-large {
  order: 0;
}
@media only screen and (max-width: 1024px) {
  .gj-register__bonus-item.m--bonus-1 {
    flex-direction: row;
  }
}
@media only screen and (max-width: 580px) {
  .gj-register__bonus-item.m--bonus-1 {
    flex-direction: column-reverse !important;
    align-items: flex-start;
  }
}
.gj-register__bonus-item.m--bonus-2 {
  display: flex;
  background-image: url(/modern-3/aa92f7d6329cfe8d2e68.png);
}
@media only screen and (max-width: 1024px) {
  .gj-register__bonus-item {
    margin-bottom: 15px;
    align-items: center;
    justify-content: space-between;
    background-image: url(/modern-3/aa92f7d6329cfe8d2e68.png) !important;
    flex-direction: row;
    align-items: stretch !important;
  }
}
.gj-register__bonus-header {
  position: relative;
  padding: 16;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.gj-register__bonus-name {
  font-weight: 500;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 5px;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .gj-register__bonus-name {
    margin-bottom: 0px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__bonus-name {
    font-size: 16px;
    line-height: 20px;
  }
}
.gj-register__bonus-desc {
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}
.m--bonus-2 .gj-register__bonus-desc {
  color: #6499FF;
}
.gj-register__bonus-desc ul,
.gj-register__bonus-desc li {
  margin-left: 0px;
}
.gj-register__bonus-desc ul {
  padding-left: 20px;
  margin-bottom: 0px;
  padding-bottom: 0px;
}
@media only screen and (max-width: 760px) {
  .gj-register__bonus-desc ul {
    padding-top: 0px;
    margin-top: 0px;
  }
}
.gj-register__bonus-desc li {
  padding-left: 0px;
  font-size: 13px;
  line-height: 16px;
}
.gj-register__bonus-img-large {
  flex-shrink: 0;
  width: 100%;
  background-image: url(/modern-3/435df61199ea61704a99.png);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.m--bonus-1 .gj-register__bonus-img-large {
  aspect-ratio: 1.33333333;
}
.m--bonus-1 .gj-register__bonus-img-large.m--bonus-ru {
  background-image: url(/modern-3/d40eefafb72d875b8893.png);
}
.m--bonus-1 .gj-register__bonus-img-large.m--bonus-en {
  background-image: url(/modern-3/9ff8366cdaef2f1c8b89.png);
}
.m--bonus-1 .gj-register__bonus-img-large.m--bonus-de {
  background-image: url(/modern-3/9ec4b44f0dfce61d17ea.png);
}
.m--bonus-1 .gj-register__bonus-img-large.m--bonus-jp {
  background-image: url(/modern-3/771bb87efb13a8201602.png);
}
@media only screen and (max-width: 1024px) {
  .m--bonus-1 .gj-register__bonus-img-large {
    width: 200px;
  }
}
@media only screen and (max-width: 580px) {
  .m--bonus-1 .gj-register__bonus-img-large {
    width: 100%;
  }
}
.m--bonus-2 .gj-register__bonus-img-large {
  height: 165px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__bonus-img-large {
    width: 120px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__bonus-img-large {
    width: 90px;
  }
}
.gj-register__bonus-img-small {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  background-size: 220px;
  background-image: url(/modern-3/f6b78f2ceaeaac12265c.png);
  background-position: center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 500px) {
  .gj-register__bonus-img-small {
    width: 90px;
    height: 90px;
    background-size: 160px;
  }
}
.gj-register__bonus-disclaimer {
  color: rgba(255, 255, 255, 0.59);
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  /* 150% */
  margin-bottom: 20px;
}
.gj-register__pix-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  .gj-register__pix-header {
    flex-wrap: wrap;
    gap: 16px;
  }
}
.gj-register__pix-login {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 500px) {
  .gj-register__pix-login {
    gap: 10px;
  }
}
.gj-register__pix-login-text {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
}
@media only screen and (max-width: 500px) {
  .gj-register__pix-login-text {
    display: none;
  }
}
.gj-register__pix-login-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 2px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.2s ease;
  background: transparent;
}
.gj-register__pix-login-btn:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.05);
}
@media only screen and (max-width: 500px) {
  .gj-register__pix-login-btn {
    padding: 8px 14px;
    font-size: 12px;
  }
}
.gj-register__pix-login-btn-icon {
  width: 18px;
  height: 18px;
  background-image: url(/modern-3/142d2975251217dbfb67.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.gj-register__pix-login-btn-icon.--gaijin {
  background-image: url(/modern-3/e4ca0b5ddebb1f81dd9e.png);
}
.gj-register__migration-banner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: rgba(0, 0, 0, 0.3);
  border-left: 3px solid #FFC107;
  padding: 12px 16px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.5;
  color: #FFC107;
}
@media only screen and (max-width: 500px) {
  .gj-register__migration-banner {
    font-size: 13px;
    margin-bottom: 20px;
  }
}
.gj-register__migration-banner-icon {
  color: #FFC107;
  flex-shrink: 0;
  display: inline;
  margin-right: 6px;
}
.gj-register__migration-banner-text {
  display: inline;
}
.gj-register__migration-banner-link {
  color: #FFC107;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.gj-register__migration-banner-link::after {
  content: '';
  display: inline-block;
  width: 13px;
  height: 12px;
  background-image: url(/modern-3/176a407371a7437cfb02.svg);
  background-size: contain;
  background-repeat: no-repeat;
}
.gj-register__migration-banner-link:hover {
  color: #FFD54F;
}
.gj-register__pix-form-title {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 24px;
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .gj-register__pix-form-title {
    font-size: 28px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-register__pix-form-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.gj-reg-download-block__container {
  display: flex;
  flex-wrap: wrap;
}
.gj-reg-download-block__requirements {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 20px;
  font-weight: 300;
  flex-shrink: 0;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .gj-reg-download-block__requirements {
    flex: 1;
    margin-top: 10px;
    text-align: center;
  }
}
.gj-reg-download-block__wrapper {
  margin: 10px 20px 10px 0;
}
@media only screen and (max-width: 1024px) {
  .gj-reg-download-block__wrapper {
    margin-right: 0;
    width: 100%;
  }
}
.gj-reg-download-block__text {
  color: #fff;
  font-size: 18px;
}
.gj-reg-download-block__timeout {
  font-size: 14px;
  text-align: center;
  font-weight: 300;
  margin-top: 10px;
}
.gj-reg-download-block.--confirmed .gj-reg-button {
  font-size: 28px;
  height: 56px;
}

.gj-reg-platform-accounts {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  margin-top: 25px;
}
.gj-reg-platform-accounts__title {
  text-align: center;
  font-size: 20px;
}
.gj-reg-platform-accounts__icons {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}
.gj-reg-platform-accounts__icon {
  height: 30px;
  width: 30px;
  margin: 10px;
  justify-content: center;
  background-size: contain;
  background-position: center bottom;
  background-repeat: no-repeat;
}
.gj-reg-platform-accounts__icon.--windows {
  background-image: url(/modern-3/626443ca6496779d04bb.png);
}
.gj-reg-platform-accounts__footer {
  text-align: center;
  font-weight: 300;
}
.gj-reg-platform-accounts__system-requirements {
  cursor: pointer;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: underline;
  transition: all 0.1s ease-out;
}
.gj-reg-platform-accounts__system-requirements:hover,
.gj-reg-platform-accounts__system-requirements:focus {
  color: #ffaa08;
  color: var(--gj-register-accent, #ffaa08);
}
.gj-reg-platform-accounts__system-requirements:active {
  color: rgba(255, 170, 8, 0.8);
  color: rgba(var(--gj-register-accent-rgb, 255, 170, 8), 0.8);
}

.gj-register-cbt {
  padding: 30px 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.14);
  position: relative;
  background-color: #0D191E;
  color: #fff;
  padding: 70px 20px;
  display: flex;
  flex-flow: column;
  margin: 0px auto;
  width: 100%;
  background-image: url(/modern-3/c63a514a730963e42413.png);
  background-size: cover;
  background-position: right bottom;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 600px) {
  .gj-register-cbt {
    padding: 15px !important;
  }
}
.gj-register-cbt * {
  box-sizing: border-box;
}
.gj-register-cbt.m--shop {
  background-position: center bottom;
  background-image: url(/modern-3/d71dc70c4b0c55949df6.png);
  text-align: center;
  align-items: center;
}
.gj-register-cbt.m--shop .gj-register-cbt__title {
  text-transform: uppercase;
}
.gj-register-cbt.m--shop .gj-register-cbt__text {
  padding-bottom: 150px;
}
@media only screen and (max-width: 600px) {
  .gj-register-cbt.m--shop .gj-register-cbt__text {
    padding-bottom: 30px;
  }
}
.gj-register-cbt__close {
  cursor: pointer;
  background-image: url(/modern-3/deba56991cc7da2b8261.svg);
  background-size: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: rgba(0, 0, 0, 0.2);
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease-out;
}
.gj-register-cbt__close:hover,
.gj-register-cbt__close:focus {
  opacity: 1;
}
.gj-register-cbt__close:active {
  opacity: 0.6;
}
.gj-register-cbt__title {
  font-size: 32px;
  line-height: 40px;
  margin-bottom: 16px;
}
@media only screen and (max-width: 600px) {
  .gj-register-cbt__title {
    font-size: 24px;
    line-height: 32px;
  }
}
.gj-register-cbt__text {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.82);
}
@media only screen and (max-width: 600px) {
  .gj-register-cbt__text {
    font-size: 16px;
    line-height: 20px;
  }
}
.gj-register-cbt__buttons {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
@media only screen and (max-width: 600px) {
  .gj-register-cbt__buttons {
    flex-direction: column;
  }
}
.gj-register-cbt__spacer {
  height: 15px;
  width: 15px;
}
.gj-register-cbt__button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  min-height: 56px;
  flex: 1;
  padding: 0 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0d191e;
  text-shadow: 0px 1px 0px rgba(255, 245, 208, 0.31);
  background: linear-gradient(180deg, #ffb84f 3.65%, rgba(255, 163, 97, 0) 100%), #ff6c2e;
  border-radius: 5px;
  border: none;
  outline: none;
  border-top: 1px solid #ffe5b1;
  border-bottom: 2px solid #8d3300;
  box-shadow: 0 0.8px 20px rgba(0, 0, 0, 0.7);
  transition: all 0.2s ease;
}
@media only screen and (max-width: 600px) {
  .gj-register-cbt__button {
    min-height: 44px;
    font-size: 18px;
  }
}
.gj-register-cbt__button:hover,
.gj-register-cbt__button:focus {
  background: linear-gradient(180deg, #ffc34f 0%, rgba(255, 220, 97, 0) 100%), #ff922e;
  border-bottom-color: #d97320;
}
.gj-register-cbt__button:active {
  background: #cd680a;
  border-bottom-color: #cd680a;
  border-top-color: #99571b;
}
.gj-register-cbt__button.m--clear {
  color: #FFB84F;
  text-shadow: none;
  border: 1px solid #FFB84F;
  background: none;
  box-shadow: none;
  font-size: 20px;
  font-weight: normal;
}
.gj-register-cbt__button.m--clear:hover,
.gj-register-cbt__button.m--clear:focus {
  color: #ffdf8b;
  border-color: #ffdf8b;
}
.gj-register-cbt__button.m--clear:active {
  color: #cd680a;
  border-color: #cd680a;
}
.gj-register-cbt__button.m--download {
  background: rgba(0, 0, 0, 0.15);
  color: #ffdf8b;
  border: 1px solid #ffdf8b;
  box-shadow: none;
  text-shadow: none;
  font-size: 20px;
  font-weight: normal;
}
.gj-register-cbt__button.m--download:hover,
.gj-register-cbt__button.m--download:focus {
  background: rgba(0, 0, 0, 0.25);
}
.gj-register-cbt__button.m--download:active {
  background: rgba(0, 0, 0, 0.3);
}
.gj-register-cbt__button.m--download::before {
  content: '';
  height: 16px;
  width: 16px;
  flex-shrink: 0;
  background-image: url(/modern-3/69fafa53ab4ee4c35bd0.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-right: 10px;
}

.gj-background-video {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  overflow: hidden;
  z-index: 0;
}
.gj-background-video__video {
  position: absolute;
  z-index: 1;
  inset: 0;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  background-size: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in;
}
.gj-background-video__video:not(.--loading) {
  opacity: 1;
}

.gj-captcha {
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gj-captcha__reload {
  cursor: pointer;
  display: inline-block;
  text-decoration: none;
  background-color: transparent;
  background-image: url(/modern-3/6a58294ee8236ae2a73a.svg);
  border: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 0 0;
  width: 24px;
  height: 24px;
  outline: 0 !important;
  margin: 0 5px;
  opacity: 0.8;
  transition: opacity 0.2s ease-out;
}
.gj-captcha__reload:hover,
.gj-captcha__reload:focus {
  opacity: 1;
}
.gj-captcha__reload:active {
  opacity: 0.6;
}
.gj-captcha__image {
  cursor: pointer;
  box-shadow: 0 0 2px #442d2b;
  margin: 0;
  height: 40px;
  width: 115px;
}

.gj-language-picker {
  font-family: sans-serif;
  position: absolute;
  right: 0;
  top: 0;
  font-size: 16px;
  padding: 20px;
  z-index: 4;
  transition: background-color 0.2s ease-in-out;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.gj-language-picker__item {
  cursor: pointer;
  display: none;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
  background-color: rgba(6, 22, 31, 0.38);
  text-transform: capitalize;
  transition: all 0.2s ease;
}
.gj-language-picker__item:hover,
.gj-language-picker__item:focus {
  background-color: rgba(6, 22, 31, 0.6);
}
.gj-language-picker__item.m--current {
  display: flex;
  justify-content: flex-end;
  border-radius: 2px;
}
.gj-language-picker__item.m--active {
  display: flex;
}
.gj-language-picker__item.m--selected {
  opacity: 0.5;
  background-color: #06161f;
  pointer-events: none;
}
.gj-language-picker__item:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}
.gj-language-picker__item:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}
.gj-language-picker__flag {
  background-image: url(/modern-3/46691d86af35e0251bd1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -152px;
  flex-shrink: 0;
  height: 10px;
  width: 16px;
  margin-right: 5px;
}
.gj-language-picker__flag.m--ru {
  background-position: 0 -11px;
}
.gj-language-picker__flag.m--pl {
  background-position: 0 -32px;
}
.gj-language-picker__flag.m--jp {
  background-position: 0 -44px;
}
.gj-language-picker__flag.m--es {
  background-position: 0 -65px;
}
.gj-language-picker__flag.m--de {
  background-position: 0 -87px;
}
.gj-language-picker__flag.m--zh {
  background-position: 0 -108px;
}
.gj-language-picker__flag.m--fr {
  background-position: 0 -119px;
}
.gj-language-picker__flag.m--ko {
  background-position: 0 -130px;
}
.gj-language-picker__down {
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid #fff;
  margin-left: 5px;
}

.gj-modal {
  pointer-events: auto;
  position: fixed;
  max-height: 100vh;
  -webkit-overflow-scrolling: touch;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  min-width: 320px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAEUlEQVQIW2NkgAAfRhABYgEABKEAm0rOGYsAAAAASUVORK5CYII=), rgba(20, 20, 20, 0.8);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  overflow-y: auto;
}
.gj-modal.--huge {
  background: rgba(11, 19, 28, 0.9);
}
.gj-modal.appear {
  opacity: 1;
}
.gj-modal__close {
  position: fixed;
  right: 15px;
  top: 10px;
  color: #ffffff !important;
  text-shadow: none;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  z-index: 15;
}
.gj-modal__close:hover {
  text-decoration: none;
  color: white;
  cursor: pointer;
}
.gj-modal__content {
  max-width: 960px;
  margin: 0px auto;
  padding: 30px 0px;
  box-sizing: border-box;
  min-height: 100%;
  display: flex;
  align-items: center;
}
.gj-modal__content.--huge {
  max-width: 1630px;
  padding: 10px;
}
@media only screen and (max-width: 1700px) {
  .gj-modal__content.--huge {
    max-width: 1140px;
  }
}
@media only screen and (max-width: 960px) {
  .gj-modal__content.--huge {
    max-width: 665px;
  }
}
@media only screen and (max-width: 600px) {
  .gj-modal__content.--huge {
    padding: 0;
  }
}
@media only screen and (min-width: 1600px) {
  .gj-modal__content.--large {
    max-width: 1140px;
  }
}
.gj-modal__content.--mini {
  max-width: 640px;
}
@media only screen and (max-width: 1024px) {
  .gj-modal__content {
    max-width: 700px;
  }
  .gj-modal__content.--mini {
    max-width: 640px;
  }
}
@media only screen and (max-width: 760px) {
  .gj-modal__content {
    max-width: auto;
    margin: auto;
    padding: 30px;
  }
}
@media only screen and (max-width: 500px) {
  .gj-modal__content {
    padding: 0px;
    margin: auto;
  }
}

@keyframes play {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(24px);
    opacity: 0;
  }
}
.gj-scroll-helper {
  position: fixed;
  left: calc(50% - 53.5px);
  bottom: 0px;
  width: 107px;
  height: 54px;
  z-index: 100;
  background: url(/modern-3/30dd0ac37203b29dd0eb.png) left bottom;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
}
.gj-scroll-helper:not(.--visible) {
  pointer-events: none;
}
.gj-scroll-helper.--visible {
  opacity: 1;
}
.gj-scroll-helper__icon {
  width: 27px;
  height: 15px;
  margin: 15px auto 0px;
  background: url(/modern-3/328a35a2d9a342354aab.png) left top;
  animation: play 0.9s linear infinite;
}

.gj-spinner {
  width: 70px;
  text-align: center;
}
.gj-spinner > div {
  width: 8px;
  height: 8px;
  background-color: #333;
  border-radius: 100%;
  display: inline-block;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
.gj-spinner .bounce1 {
  animation-delay: -0.32s;
}
.gj-spinner .bounce2 {
  animation-delay: -0.16s;
}
/* stylelint-disable */
/* stylelint-enable */
@keyframes sk-bouncedelay {
  0%,
  80%,
  100% {
    transform: scale(0);
  }
  40% {
    transform: scale(1);
  }
}

gj-spoilers,
gj-spoiler {
  display: block;
}
.gj-spoilers {
  font-size: 18px;
}
.gj-spoilers__item {
  padding: 0px;
  margin: 15px 0px 15px 0px;
  list-style-type: none;
}
.gj-spoiler__header {
  display: flex;
  transition: color 0.2s ease-in-out;
}
.gj-spoiler__header:hover {
  color: #f44336;
}
.gj-spoiler__header.--expanded {
  color: #f44336;
}
.gj-spoiler__text {
  font-size: 16px;
  text-decoration: underline;
  flex: 1;
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.gj-spoiler__expand {
  width: 30px;
  text-align: center;
}
.gj-spoiler__expander {
  position: absolute;
  width: 30px;
  height: 30px;
  transform: rotate(-90deg);
  transition: transform 0.2s linear;
}
.gj-spoiler__expander.--expanded {
  transform: rotate(90deg);
}
.gj-spoiler__answer {
  display: none;
  font-size: 14px;
  margin-top: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #c6c6c6;
}
.gj-spoiler__answer.--expanded {
  display: block;
}
.gj-spoiler__answer gj-spoilers {
  margin-left: 20px;
}

.gj-toasts {
  position: fixed;
  max-width: 760px;
  width: 100%;
  left: 50%;
  transform: translate(-50%, 0px);
  z-index: 1100;
  transition: transform 0.3s ease-out;
}
.gj-toasts__item {
  margin-bottom: 10px;
}
.gj-toasts.--top {
  top: 50px;
}
.gj-toasts.--bottom {
  bottom: 0px;
}
.gj-toast {
  position: absolute;
  width: 100%;
  left: 0px;
  display: flex;
  background-color: #28303a;
  padding: 15px 20px;
  font-size: 13px;
  box-sizing: border-box;
  color: black;
  box-shadow: 0 0 45px -5px rgba(0, 0, 0, 0.1), 1px 1px 5px 0px rgba(0, 0, 0, 0.4);
  transform: translateY(-200px);
  opacity: 0;
  transition: all 0.3s ease-out;
  font-family: 'Fira Sans', sans-serif;
}
.gj-toast.--bottom {
  transform: translateY(200px);
}
.gj-toast.--appear {
  transform: translateY(0px);
  opacity: 1;
}
.gj-toast.--error {
  -webkit-backdrop-filter: blur(4px);
  background-color: #442538;
  color: white;
}
.gj-toast__message {
  flex: 1;
  color: white;
}
.gj-toast__close {
  cursor: pointer;
  width: 10px;
  text-decoration: none;
  color: white;
}

[gj-show-once] {
  display: none;
}
[gj-show-once].m--visible {
  display: unset !important;
}

gj-animated {
  display: block;
  width: 100%;
}
.gj-animated {
  overflow: hidden;
  transition: height 0.2s ease-out;
  display: block;
}

.gj-cookie-control {
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: 10px 0px;
  padding: 10px;
}
.gj-cookie-control__button {
  border: 0px;
  outline: 0px;
  cursor: pointer;
  padding: 9px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  background-color: var(--gj-cookie-prompt-button, #ed8d00);
  min-width: 80px;
  border-radius: 3px;
  text-align: center;
  transition: opacity 0.15s ease-in;
}

.gj-fullsize-image {
  background-color: white;
  position: absolute;
  left: 0px;
}

.gj-lazy-load__loading {
  display: flex;
  padding: 30px;
  align-items: center;
  align-content: center;
  justify-content: center;
}
[ng-cloak] {
  display: none;
}

gj-youtube {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: #000;
}
.gj-youtube {
  display: block;
  width: 100%;
  height: 100%;
}
.gj-youtube__iframe {
  z-index: 1;
  position: relative;
}
.gj-youtube__play {
  cursor: pointer;
  text-indent: -9000px;
  position: relative;
  z-index: 6;
  height: 100%;
  width: 100%;
}
.gj-youtube__play:hover::after,
.gj-youtube__play:focus::after {
  transform: scale(1.1);
}
.gj-youtube__play:active::after {
  transform: scale(1.05);
}
.gj-youtube__play::after {
  content: '';
  position: absolute;
  z-index: 6;
  right: 0;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  height: 4rem;
  width: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
  background-size: 2rem;
  background-position: 1.3rem center;
  background-color: #fff;
  background-image: url(/modern-3/0c5820ffdbf0b4e4bbe9.svg);
  transition: transform 0.15s ease;
}

[gj-appear] {
  opacity: 0;
}
[gj-appear].--visible {
  transition: opacity 0.1s ease-out;
  opacity: 1;
}

:root {
  --gj-download-link-color: #ffbd1d;
}
[gj-download-link][disabled="disabled"] {
  opacity: 0.5 !important;
  pointer-events: none !important;
}
.gj-download-tooltip {
  position: fixed;
  z-index: 9999;
  padding: 18px 20px;
  border-radius: 3px;
  background-color: #ffbd1d;
  background-color: var(--gj-download-link-color, #ffbd1d);
  box-shadow: 0px 0px 50px 0px #090d15;
  color: #000;
  font-family: 'Fira Sans', sans-serif;
  font-size: 24px;
  transition: opacity 0.3s ease-out;
  animation: gj-download-link 0.5s infinite alternate;
  opacity: 0;
  left: 20px;
  bottom: 20px;
}
.gj-download-tooltip.--active {
  opacity: 1;
}
.gj-download-tooltip::after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-right: 18px solid transparent;
  border-left: 18px solid transparent;
  top: 100%;
  border-top: 18px solid #ffbd1d;
  border-top: 18px solid var(--gj-download-link-color, #ffbd1d);
  left: 50%;
  margin-left: -18px;
}
.gj-download-tooltip.--browser-chrome {
  left: 20px;
  bottom: 30px;
}
.gj-download-tooltip.--browser-ie,
.gj-download-tooltip.--browser-edge {
  left: 50%;
  bottom: 100px;
}
@media screen and (max-width: 815px) {
  .gj-download-tooltip.--browser-ie,
  .gj-download-tooltip.--browser-edge {
    bottom: 250px;
  }
}
.gj-download-tooltip.--browser-firefox {
  right: 20px;
  top: 30px;
  left: initial;
  bottom: initial;
}
.gj-download-tooltip.--browser-firefox::after {
  top: -18px;
  border-bottom: 18px solid #ffbd1d;
  border-bottom: 18px solid var(--gj-download-link-color, #ffbd1d);
  border-top: initial;
}
.gj-download-tooltip.--browser-safari {
  right: 20px;
  bottom: 30px;
  left: initial;
  top: initial;
}
.gj-download-tooltip.--browser-opera,
.gj-download-tooltip.--browser-yandexbrowser {
  right: 20px;
  top: 30px;
  left: initial;
  bottom: initial;
}
.gj-download-tooltip.--browser-opera::after,
.gj-download-tooltip.--browser-yandexbrowser::after {
  top: -18px;
  border-bottom: 18px solid #ffbd1d;
  border-bottom: 18px solid var(--gj-download-link-color, #ffbd1d);
  border-top: initial;
  right: 30px;
  left: initial;
}
@keyframes gj-download-link {
  0% {
    transform: translateY(-25px);
  }
  100% {
    transform: translateY(0px);
  }
}
.hidden-iframe {
  display: none;
}

[gj-timeout-link][disabled="disabled"] {
  opacity: 0.5 !important;
  pointer-events: none !important;
}

.gj-choose-region {
  position: relative;
  background-color: #0d2127;
  color: #fff;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-image: url(/modern-3/cb0ff238c72d14f4689b.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
}
.gj-choose-region__container {
  padding: 30px;
}
@media only screen and (max-width: 760px) {
  .gj-choose-region__container {
    padding: 15px;
  }
}
.gj-choose-region__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-left: 1rem;
}
.gj-choose-region__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .gj-choose-region__heading {
    font-size: 20px;
    line-height: 24px;
  }
}
.gj-choose-region__main-title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  text-align: center;
  font-family: "Alumni Sans";
}
@media only screen and (max-width: 760px) {
  .gj-choose-region__main-title {
    font-size: 32px;
    line-height: 44px;
  }
}
.gj-choose-region__main-title a {
  text-decoration: underline;
  color: white;
  transition: color 0.2s ease-out;
}
.gj-choose-region__main-title a:hover {
  color: #FEBE6B;
}
.gj-choose-region__main-desc {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  padding: 1rem 0 2.5rem;
}
.gj-choose-region__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.gj-choose-region__blocks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media only screen and (max-width: 1024px) {
  .gj-choose-region__blocks {
    grid-template-columns: 1fr;
  }
}
.gj-choose-region__block {
  padding: 1rem;
  display: flex;
  gap: 1rem;
  flex-direction: column;
  background-repeat: no-repeat;
  background-position: top right;
  background-size: cover;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.gj-choose-region__block p {
  margin: 0;
  max-width: 70%;
}
.gj-choose-region__block ul {
  flex: 1;
  margin: 0;
  max-width: 70%;
  opacity: 0.7;
}
.gj-choose-region__block.m--pix {
  background-image: url(/modern-3/02e29f60dc2a568bab4e.jpg);
}
.gj-choose-region__block.m--gj {
  background-image: url(/modern-3/d2f8e664ddf3c5177a88.jpg);
}
.gj-choose-region__block .en-play-button {
  font-size: 1.25rem;
}
.gj-choose-region__close {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease-out, color 0.2s ease-out;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.gj-choose-region__close:hover,
.gj-choose-region__close:focus {
  opacity: 1;
  color: #FEBE6B;
}
.gj-choose-region__close:active {
  opacity: 0.6;
}

.gj-geo-warning {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 500;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (min-width: 1200px) {
  .gj-geo-warning {
    width: 100vw;
    height: 100vh;
  }
}
.gj-geo-warning__backdrop {
  opacity: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
  background: rgba(4, 7, 26, 0.9);
}
.gj-geo-warning__content {
  display: flex;
  position: absolute;
  top: 0;
  left: 0;
  background-size: cover;
  border-radius: 3px;
  padding: 65px 16px 140px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  opacity: 1;
  transition: all 0.3s ease-in-out;
  pointer-events: all;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  background-image: url(/modern-3/5f3549beed706608dacd.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-color: rgba(16, 23, 31, 0.8);
  box-shadow: 0 20px 24px 0 #0E1018, 0 1px 0 0 rgba(255, 255, 255, 0.1) inset;
  min-height: 500px;
}
@media screen and (min-width: 950px) {
  .gj-geo-warning__content {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 160px 140px;
    max-width: 960px;
    height: auto;
  }
}
@media screen and (min-width: 1200px) {
  .gj-geo-warning__content {
    max-width: 960px;
    padding: 160px 140px;
  }
}
.gj-geo-warning__title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin: 0 0 16px;
  text-align: center;
}
.gj-geo-warning__text {
  margin-bottom: 28px;
  text-align: center;
}
.gj-geo-warning__btn-container {
  position: absolute;
  top: 1px;
  right: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.gj-geo-warning__lang-picker {
  position: relative;
  border-radius: 2px;
  padding: 6px 8px;
  color: #fff;
  font-size: 15px;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset, 0 0 0 1px rgba(0, 0, 0, 0.5);
  cursor: pointer;
}
.gj-geo-warning__lang-picker.--open {
  background: #363a3e;
}
.gj-geo-warning__lang-current {
  display: flex;
  align-items: center;
  gap: 6px;
}
.gj-geo-warning__lang-code {
  font-size: 14px;
  font-weight: 500;
}
.gj-geo-warning__dropdown-arrow {
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.--open .gj-geo-warning__dropdown-arrow {
  transform: rotate(180deg);
}
.gj-geo-warning__lang-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 4px;
  background: #272a2e;
  border-radius: 3px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  z-index: 10;
  min-width: 160px;
}
.gj-geo-warning__lang-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  font-size: 14px;
}
.gj-geo-warning__lang-item:first-child {
  border-radius: 3px 3px 0 0;
}
.gj-geo-warning__lang-item:last-child {
  border-radius: 0 0 3px 3px;
}
.gj-geo-warning__lang-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.gj-geo-warning__lang-item.--current {
  opacity: 0.5;
  pointer-events: none;
}
.gj-geo-warning__flag {
  background-image: url(/modern-3/46691d86af35e0251bd1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: 0 -152px;
  flex-shrink: 0;
  height: 10px;
  width: 16px;
}
.gj-geo-warning__flag.m--en {
  background-position: 0 -152px;
}
.gj-geo-warning__flag.m--ru {
  background-position: 0 -11px;
}
.gj-geo-warning__flag.m--pl {
  background-position: 0 -32px;
}
.gj-geo-warning__flag.m--jp {
  background-position: 0 -44px;
}
.gj-geo-warning__flag.m--es {
  background-position: 0 -65px;
}
.gj-geo-warning__flag.m--de {
  background-position: 0 -87px;
}
.gj-geo-warning__flag.m--zh {
  background-position: 0 -108px;
}
.gj-geo-warning__flag.m--fr {
  background-position: 0 -119px;
}
.gj-geo-warning__flag.m--ko {
  background-position: 0 -130px;
}
.gj-geo-warning__close-btn {
  border-radius: 0 3px 0 2px;
  box-shadow: 0 1px 0 0 rgba(255, 255, 255, 0.1) inset, 0 0 0 1px rgba(0, 0, 0, 0.5);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.gj-geo-warning__close-btn img {
  width: 16px;
  height: 16px;
}
.gj-geo-warning__close-btn:hover img {
  filter: brightness(200%);
}
.gj-geo-warning__btn-leave {
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  font-family: Arial, sans-serif;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  padding: 0 24px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  color: #0d191e;
  text-shadow: 0 1px 0 rgba(255, 216, 194, 0.6);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  transition: all 0.2s ease;
  border-top: 1px solid #ffe5b1;
  background: linear-gradient(180deg, #FEBE6B 0%, rgba(216, 135, 86, 0) 100%), #D88756;
  border-bottom: 2px solid #B3653C;
  margin-bottom: 16px;
}
.gj-geo-warning__btn-leave:hover,
.gj-geo-warning__btn-leave:focus {
  background: linear-gradient(180deg, #ffc34f 0%, rgba(255, 220, 97, 0) 100%), #ff922e;
  border-bottom-color: #d97320;
  color: #0d191e;
}
.gj-geo-warning__btn-leave:active {
  background: #cd680a;
  border-bottom-color: #cd680a;
  border-top-color: #99571b;
}
.gj-geo-warning__btn-stay {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 1px 0 rgba(255, 255, 255, 0.92) inset;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  outline: none;
  border: none;
  margin: 0;
  font-family: Arial, sans-serif;
  font-size: 14px;
}
.gj-geo-warning__btn-stay:hover {
  color: #fff;
}
@media screen and (min-width: 950px) {
  .gj-geo-warning__btn-stay {
    bottom: 40px;
  }
}
.gj-geo-warning__mini {
  display: flex;
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #272a2e;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 0;
  height: 40px;
  width: 40px;
  transform: scale(0.1);
  opacity: 0;
  transform-origin: bottom right;
  pointer-events: none;
  cursor: pointer;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  border-radius: 33px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 28px 32px 0 rgba(0, 0, 0, 0.25);
  z-index: 501;
}
@media screen and (min-width: 950px) {
  .gj-geo-warning__mini {
    padding: 0 36px 0 8px;
    width: -moz-fit-content;
    width: fit-content;
    border-radius: 42px;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}
.gj-geo-warning__mini-pin {
  width: 32px;
  height: 32px;
}
.gj-geo-warning__mini-text {
  display: none;
}
@media screen and (min-width: 950px) {
  .gj-geo-warning__mini-text {
    display: block;
    font-size: 16px;
    color: #cfd8dc;
    margin: 0 0 0 8px;
  }
}
.gj-geo-warning__mini-close {
  display: none;
}
@media screen and (min-width: 950px) {
  .gj-geo-warning__mini-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gj-geo-warning__mini-close img {
    transform: rotate(180deg);
  }
}
.gj-geo-warning__mini:hover .gj-geo-warning__mini-text {
  color: #fff;
}
.gj-geo-warning__mini:hover .gj-geo-warning__mini-close img {
  filter: brightness(200%);
}
.gj-geo-warning.--closed {
  position: fixed;
  pointer-events: none;
  z-index: 99;
  width: 0;
  height: 0;
  overflow: visible;
}
.gj-geo-warning.--closed .gj-geo-warning__backdrop {
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  display: none;
}
.gj-geo-warning.--closed .gj-geo-warning__content {
  opacity: 0;
  pointer-events: none;
  display: none;
}
.gj-geo-warning.--closed .gj-geo-warning__mini {
  transform: scale(1);
  opacity: 1;
  transition: all 0.3s ease-in-out;
  pointer-events: all;
}

.gj-system-requirements {
  position: relative;
  background-color: #0D191E;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.gj-system-requirements__container {
  padding: 30px 55px 70px;
}
@media only screen and (max-width: 760px) {
  .gj-system-requirements__container {
    padding: 15px 15px 50px;
  }
}
.gj-system-requirements__title {
  font-size: 30px;
  margin-bottom: 40px;
  margin-top: 30px;
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .gj-system-requirements__title {
    font-size: 24px;
    line-height: 30px;
    margin-bottom: 20px;
    margin-top: 20px;
  }
}
.gj-system-requirements__header {
  font-size: 24px;
  margin-top: 20px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
@media only screen and (max-width: 760px) {
  .gj-system-requirements__header {
    font-size: 20px;
    line-height: 24px;
  }
}
.gj-system-requirements__also {
  font-family: 'Fira Sans', sans-serif;
  width: 100%;
  display: block;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding: 15px;
}
.gj-system-requirements__also a {
  opacity: 0.7;
  color: #FFB84F;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.gj-system-requirements__also a:hover,
.gj-system-requirements__also a:focus {
  opacity: 1;
}
.gj-system-requirements__also a:active {
  opacity: 0.8;
}
.gj-system-requirements__block {
  display: flex;
  flex-wrap: wrap;
}
.gj-system-requirements__col {
  flex: 1;
  flex-shrink: 0;
  min-width: 250px;
  padding-right: 25px;
}
@media only screen and (max-width: 500px) {
  .gj-system-requirements__col {
    padding-right: 0;
  }
}
.gj-system-requirements__list p {
  font-family: 'Fira Sans', sans-serif;
  font-size: 16px;
  line-height: 22px;
  margin: 10px 0;
}
@media only screen and (max-width: 760px) {
  .gj-system-requirements__list p {
    font-size: 14px;
    line-height: 18px;
  }
}
.gj-system-requirements__list span {
  color: rgba(255, 255, 255, 0.6);
}
.gj-system-requirements__close {
  cursor: pointer;
  background-image: url(/modern-3/deba56991cc7da2b8261.svg);
  background-size: 20px;
  background-position: center center;
  background-repeat: no-repeat;
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 5;
  right: 0;
  top: 0;
  opacity: 0.8;
  transition: opacity 0.2s ease-out;
}
.gj-system-requirements__close:hover,
.gj-system-requirements__close:focus {
  opacity: 1;
}
.gj-system-requirements__close:active {
  opacity: 0.6;
}

.gj-trailer {
  position: relative;
  margin: 0 auto;
  padding-bottom: calc(100% * 9 / 16);
  width: 100%;
}
.gj-trailer gj-youtube {
  position: absolute;
  inset: 0;
}
.gj-trailer__close {
  cursor: pointer;
  background-image: url(/modern-3/deba56991cc7da2b8261.svg);
  background-size: 15px;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #454b50;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 5;
  right: -10px;
  top: -10px;
  opacity: 0.8;
  transition: opacity 0.2s ease-out;
}
.gj-trailer__close:hover,
.gj-trailer__close:focus {
  opacity: 1;
}
.gj-trailer__close:active {
  opacity: 0.6;
}

.gj-welcome-global {
  position: relative;
  background-color: #0d2127;
  color: #fff;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background-image: url(/modern-3/cb0ff238c72d14f4689b.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.gj-welcome-global__container {
  padding: 0 30px 50px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media only screen and (max-width: 760px) {
  .gj-welcome-global__container {
    padding: 0 15px 30px 15px;
  }
}
.gj-welcome-global__header {
  display: flex;
  justify-content: flex-end;
}
.gj-welcome-global__region {
  border: 1px solid rgba(255, 255, 255, 0.14);
  padding: 0.5rem 1rem;
  display: flex;
  gap: 0.5rem;
  border-radius: 2rem;
  align-items: center;
  justify-content: center;
  margin: 2rem 0;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}
.gj-welcome-global__main-title {
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  text-align: center;
  font-family: "Alumni Sans";
}
@media only screen and (max-width: 760px) {
  .gj-welcome-global__main-title {
    font-size: 32px;
    line-height: 44px;
  }
}
.gj-welcome-global__main-desc {
  text-align: center;
  font-size: 20px;
  line-height: 32px;
  padding: 1rem 0 2.5rem;
  max-width: 60ch;
  margin: 0 auto;
}
.gj-welcome-global__logos {
  display: flex;
  align-items: center;
  justify-content: center;
}
.gj-welcome-global__buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.gj-welcome-global__close {
  cursor: pointer;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.8;
  transition: opacity 0.2s ease-out, color 0.2s ease-out;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.gj-welcome-global__close:hover,
.gj-welcome-global__close:focus {
  opacity: 1;
  color: #FEBE6B;
}
.gj-welcome-global__close:active {
  opacity: 0.6;
}
.gj-welcome-global .en-clear-button {
  padding: 0 1.5rem;
  height: 3.4rem;
  gap: 0.5rem;
}

@keyframes play {
  0% {
    transform: translateY(0px);
    opacity: 1;
  }
  100% {
    transform: translateY(24px);
    opacity: 0;
  }
}
.en-scroll-helper {
  position: fixed;
  left: calc(50% - 53.5px);
  bottom: 0px;
  width: 107px;
  height: 54px;
  z-index: 100;
  background: url(/modern-3/30dd0ac37203b29dd0eb.png) left bottom;
  opacity: 0;
  transition: opacity 0.3s ease-out;
  cursor: pointer;
}
.en-scroll-helper:not(.--visible) {
  pointer-events: none;
}
.en-scroll-helper.--visible {
  opacity: 1;
}
.en-scroll-helper__icon {
  width: 27px;
  height: 15px;
  margin: 15px auto 0px;
  background: url(/modern-3/328a35a2d9a342354aab.png) left top;
  animation: play 0.9s linear infinite;
}

gj-comparision {
  display: block;
}
.gj-comparision {
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.gj-comparision__item {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}
.gj-comparision__item.m--main {
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  width: 50%;
  border-right: 2px solid #fff;
}
.gj-comparision__handle {
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  background-color: #fff;
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjwhRE9DVFlQRSBzdmcgIFBVQkxJQyAnLS8vVzNDLy9EVEQgU1ZHIDEuMC8vRU4nICAnaHR0cDovL3d3dy53My5vcmcvVFIvMjAwMS9SRUMtU1ZHLTIwMDEwOTA0L0RURC9zdmcxMC5kdGQnPjxzdmcgZW5hYmxlLWJhY2tncm91bmQ9Im5ldyAwIDAgMzIgMzIiIGhlaWdodD0iMzJweCIgaWQ9IkxheWVyXzEiIHZlcnNpb249IjEuMCIgdmlld0JveD0iMCAwIDMyIDMyIiB3aWR0aD0iMzJweCIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayI+PHBhdGggZD0iTTE3LjA2NywzLjE4MnYyNS42MzVjMCwwLjU4OS0wLjQ3OCwxLjA2OC0xLjA2NywxLjA2OGMtMC41ODgsMC0xLjA2Ny0wLjQ3OS0xLjA2Ny0xLjA2OFYzLjE4MiAgYzAtMC41ODksMC40NzktMS4wNjYsMS4wNjctMS4wNjZDMTYuNTkxLDIuMTE1LDE3LjA2NywyLjU5MywxNy4wNjcsMy4xODJ6IE0zMS45ODIsMTUuOTU5Yy0wLjAwOC0wLjIxMS0wLjA3OS0wLjQ4Mi0wLjIxNy0wLjY1MSAgbC00LjE0MS01LjE2MmMtMC4zNy0wLjQ1OS0xLjA0LTAuNTMzLTEuNS0wLjE2M2MtMC40NTksMC4zNjctMC41MzMsMS4wNDItMC4xNjIsMS41MDFsMi43NDYsMy40MjdoLTkuNjEzICBjLTAuNTksMC0xLjA2OCwwLjQ3OC0xLjA2OCwxLjA2N2MwLDAuNTkxLDAuNDc5LDEuMDY4LDEuMDY4LDEuMDY4aDkuNjIzbC0yLjc2MywzLjQ3M2MtMC4zNjcsMC40NjItMC4yODksMS4xMzYsMC4xNzEsMS41MDIgIGMwLjE5NywwLjE1NSwwLjQzMywwLjIzMiwwLjY2NCwwLjIzMmMwLjMxNCwwLDAuNjI2LTAuMTQsMC44MzYtMC40MDRjMCwwLDQuMTMtNS4xOTEsNC4xNDItNS4yMDYgIEMzMS45MiwxNi40NTMsMzEuOTkxLDE2LjIwNywzMS45ODIsMTUuOTU5eiBNMCwxNi4wNDFjMC4wMDgsMC4yMTEsMC4wNzksMC40ODIsMC4yMTcsMC42NTFsNC4xNDEsNS4xNjIgIGMwLjM3LDAuNDU5LDEuMDQsMC41MzMsMS41LDAuMTYzYzAuNDU5LTAuMzY3LDAuNTMzLTEuMDQyLDAuMTYyLTEuNTAxTDMuMjc0LDE3LjA5aDkuNjEzYzAuNTksMCwxLjA2OC0wLjQ3OCwxLjA2OC0xLjA2NyAgYzAtMC41OTEtMC40NzktMS4wNjgtMS4wNjgtMS4wNjhIMy4yNjRsMi43NjMtMy40NzNjMC4zNjctMC40NjIsMC4yODktMS4xMzYtMC4xNzEtMS41MDJDNS42NTksOS44MjQsNS40MjMsOS43NDcsNS4xOTIsOS43NDcgIGMtMC4zMTQsMC0wLjYyNiwwLjE0LTAuODM2LDAuNDA0YzAsMC00LjEzLDUuMTkxLTQuMTQyLDUuMjA2QzAuMDYzLDE1LjU0Ny0wLjAwOCwxNS43OTMsMCwxNi4wNDF6Ii8+PC9zdmc+);
  background-repeat: no-repeat;
  background-size: 1.5em;
  background-position: center;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  position: relative;
  height: 3em;
  width: 3em;
  right: calc(-1.5em - 1px);
  display: block;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: all 0.2s ease;
}
.gj-comparision__handle.m--dragging {
  cursor: grabbing;
}

.gj-register-consoles-signin {
  max-width: 960px;
}
.gj-register-consoles-signin__content {
  color: #e3e3e3;
  padding: 56px 64px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-consoles-signin__content {
    padding: 30px 28px;
  }
}
.gj-register-consoles-signin__title {
  color: #E3E3E3;
  text-shadow: 0px 0px 19px #080F12, 0px 2px 0px #272720;
  font-family: "Alumni Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 100% */
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  text-wrap: balance;
}
@media only screen and (max-width: 1024px) {
  .gj-register-consoles-signin__title {
    font-size: 32px;
  }
}
.gj-register-consoles-signin__options {
  margin-top: 24px;
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 1024px) {
  .gj-register-consoles-signin__options {
    flex-direction: column;
  }
}
.gj-register-consoles-signin__option {
  flex: 1;
  background: var(--bg_dark, rgba(3, 12, 21, 0.4));
  display: flex;
  gap: 24px;
  height: 432px;
  padding: 32px 40px 40px 40px;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 500px) {
  .gj-register-consoles-signin__option {
    padding: 26px 32px;
  }
}
.gj-register-consoles-signin__option-title {
  color: #E3E3E3;
  text-shadow: 0px 0px 19px #080F12, 0px 2px 0px #272720;
  font-family: "Alumni Sans";
  font-size: 40px;
  font-style: normal;
  font-weight: 600;
  line-height: 40px;
  /* 100% */
  text-transform: uppercase;
  margin: 0px;
  padding: 0px;
  text-wrap: balance;
}
@media only screen and (max-width: 1024px) {
  .gj-register-consoles-signin__option-title {
    font-size: 32px;
  }
}
.gj-register-consoles-signin__option-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.gj-register-consoles-signin__stepper {
  list-style: none;
  counter-reset: item;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0px;
  padding: 0px;
}
.gj-register-consoles-signin__stepper-step {
  counter-increment: item;
  display: flex;
  gap: 12px;
  align-items: center;
  font-family: "Alumni Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 32px;
  /* 133.333% */
  text-wrap: balance;
}
.gj-register-consoles-signin__stepper-step:before {
  content: counter(item);
  background: #E3E3E3;
  border-radius: 100%;
  color: white;
  width: 24px;
  height: 24px;
  min-width: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Alumni Sans";
  color: #1C1C1C;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 31px;
  /* 200% */
}
.gj-register-consoles-signin__consoles-signin {
  width: 100%;
  font-family: "Alumni Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
  /* 133.333% */
}
.gj-register-consoles-signin__consoles-button {
  display: flex;
  width: 100%;
  height: 56px;
  gap: 8px;
  justify-content: center;
  align-items: center;
  align-self: stretch;
  border-radius: 5px;
  border: 0px;
  color: var(--white, #FFF);
  text-align: center;
  font-family: "Alumni Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 600;
  line-height: 100%;
  /* 24px */
  letter-spacing: 0.96px;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  opacity: 1;
}
.gj-register-consoles-signin__consoles-button:hover {
  opacity: 0.9;
}
.gj-register-consoles-signin__consoles-button:active {
  opacity: 0.8;
}
.gj-register-consoles-signin__consoles-button.m--ps {
  background: var(--ps4, #003087);
}
.gj-register-consoles-signin__consoles-button.m--ps:hover {
  box-shadow: 0 0 24px 0 #00308744;
}
.gj-register-consoles-signin__consoles-button.m--xbox {
  background: var(--xbox, #107C10);
}
.gj-register-consoles-signin__consoles-button.m--xbox:hover {
  box-shadow: 0 0 24px 0 #107C1044;
}
@media only screen and (max-width: 500px) {
  .gj-register-consoles-signin__consoles-button {
    height: 46px;
    font-size: 20px;
    letter-spacing: 0px;
  }
}
.gj-register-consoles-signin__consoles-button-icon {
  width: 26px;
  height: 26px;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
}
.gj-register-consoles-signin__consoles-button-icon.m--ps {
  background-image: url(/modern-3/ac35e339f5980f519144.svg);
}
.gj-register-consoles-signin__consoles-button-icon.m--xbox {
  background-image: url(/modern-3/854cf71da4c2d04834ac.svg);
}

.gj-register-migration {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.gj-register-migration__content {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 30px 40px 40px;
}
@media (max-width: 768px) {
  .gj-register-migration__content {
    padding: 20px;
  }
}
.gj-register-migration__header {
  display: flex;
  align-items: flex-start;
}
.gj-register-migration__main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 20px;
  text-align: center;
  padding: 20px 0;
}
.gj-register-migration__user {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 8px 16px;
  gap: 8px;
}
.gj-register-migration__user-icon {
  width: 20px;
  height: 20px;
  background-image: url(/modern-3/142d2975251217dbfb67.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.7;
}
.gj-register-migration__user-icon.--gaijin {
  background-image: url(/modern-3/e4ca0b5ddebb1f81dd9e.png);
}
.gj-register-migration__user-name {
  font-size: 16px;
  color: #fff;
}
.gj-register-migration__user-id {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.5);
}
.gj-register-migration__title {
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: #fff;
  max-width: 600px;
}
@media (max-width: 768px) {
  .gj-register-migration__title {
    font-size: 24px;
  }
}
.gj-register-migration__notice {
  font-size: 18px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  max-width: 500px;
}
@media (max-width: 768px) {
  .gj-register-migration__notice {
    font-size: 16px;
  }
}
.gj-register-migration__actions {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-top: 10px;
}
@media (max-width: 1024px) {
  .gj-register-migration__actions {
    flex-direction: column;
    width: 100%;
  }
}
.gj-register-migration__btn {
  min-width: 200px;
}
@media (max-width: 1024px) {
  .gj-register-migration__btn {
    width: 100%;
    min-width: unset;
  }
}
.gj-register-migration__link-info {
  font-size: 16px;
  color: #e5a536;
  text-decoration: underline;
  text-align: center;
  margin-top: 10px;
}
.gj-register-migration__link-info:hover {
  color: #f0b040;
}

.gj-partnership-modal {
  position: relative;
  background-color: #000;
  color: #fff;
  padding: 70px 20px;
  text-align: center;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  margin: 0px auto;
  width: 100%;
}
.gj-partnership-modal * {
  box-sizing: border-box;
}
.gj-partnership-modal__close {
  cursor: pointer;
  background-image: url(/modern-3/deba56991cc7da2b8261.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  position: absolute;
  z-index: 5;
  right: 20px;
  top: 20px;
  opacity: 0.8;
  transition: opacity 0.2s ease-out;
}
.gj-partnership-modal__close:hover,
.gj-partnership-modal__close:focus {
  opacity: 1;
}
.gj-partnership-modal__close:active {
  opacity: 0.6;
}
.gj-partnership-modal__text {
  max-width: 410px;
  font-size: 24px;
  margin-bottom: 40px;
}
.gj-partnership-modal__button {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  color: #000;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  letter-spacing: 1px;
  outline: none;
  background-color: #ffbd1d;
  width: 220px;
  height: 50px;
  font-size: 20px;
  opacity: 0.8;
  transition: all 0.2s ease-out;
}
.gj-partnership-modal__button:hover,
.gj-partnership-modal__button:focus {
  opacity: 1;
}
.gj-partnership-modal__button:active {
  opacity: 0.6;
}

.en-partnership {
  margin: 0 auto;
  z-index: 5;
  position: relative;
  padding: 20px 0;
}
.en-partnership a {
  color: #ed8d00;
  text-decoration: none;
  font-weight: 500;
}
.en-partnership a:hover,
.en-partnership a:focus {
  text-decoration: underline;
}
.en-partnership hr {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}
.en-partnership .gj-captcha {
  justify-content: initial !important;
}
.en-partnership .gj-captcha__image {
  height: 50px !important;
  box-shadow: none;
  border-radius: 5px;
}
.en-partnership .gj-captcha__reload {
  margin: 0 15px;
}
.en-partnership__row {
  display: flex;
}
.en-partnership__col {
  margin: 15px;
  flex: 1;
}
.en-partnership__label {
  margin-bottom: 10px;
  display: flex;
}
@media only screen and (min-width: 1441px) {
  .en-partnership__label {
    font-size: 0.9rem;
  }
}
.en-partnership__label.--pointer {
  cursor: pointer;
}
@media only screen and (max-width: 1024px) {
  .en-partnership__label.--hidden {
    display: none;
  }
}
.en-partnership__input {
  font-size: 18px;
  position: relative;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border: none;
  height: 50px;
  background-color: rgba(255, 255, 255, 0.05);
  color: #e5e5e5;
  display: flex;
  align-items: center;
  border-radius: 5px;
  padding: 0 15px;
  width: 100%;
  outline: none;
}
.en-partnership__input.--textarea {
  height: initial;
  padding: 15px;
  min-height: 100px;
  resize: vertical;
}
.en-partnership__input.--select {
  background-image: url(/modern-3/f3055af6ad488760e562.png);
  background-size: 18px;
  background-position: calc(100% - 10px) center;
  background-repeat: no-repeat;
}
.en-partnership__input.--select option {
  color: initial;
}
.en-partnership__input::-webkit-input-placeholder {
  letter-spacing: -0.8px;
}
.en-partnership__input::-moz-placeholder,
.en-partnership__input:-moz-placeholder {
  letter-spacing: -0.8px;
}
.en-partnership__input:-ms-input-placeholder {
  letter-spacing: -0.8px;
}
.en-partnership__checkbox {
  cursor: pointer;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative;
  flex-shrink: 0;
  outline: none;
  height: 36px;
  border-radius: 3px;
  width: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  margin-right: 15px;
}
.en-partnership__checkbox::before {
  content: '';
  background-image: url(/modern-3/227bc0e74404d5ca15dc.svg);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  position: absolute;
  left: 4px;
  top: 4px;
  height: 30px;
  width: 30px;
  opacity: 0;
  transition: opacity 0.1s ease-out;
}
.en-partnership__checkbox:checked::before {
  opacity: 1;
}
.en-partnership__submit {
  cursor: pointer;
  -moz-appearance: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  border-radius: 5px;
  outline: none;
  border: none;
  background-color: rgba(237, 141, 0, 0.95);
  color: #fff;
  height: 50px;
  width: 200px;
  font-size: 20px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease-out;
}
.en-partnership__submit:hover,
.en-partnership__submit:focus {
  background-color: #ed8d00;
}
.en-partnership__submit:active {
  background-color: #d47e00;
}
@media only screen and (max-width: 1024px) {
  .en-partnership__row {
    flex-direction: column;
  }
}

