.lang-container {
  color: #fff;
  font-family: 'Supreme-Regular', sans-serif;
  font-size: 12px;
  position: absolute;
  top: 1%;
  right: 0%;
  display: flex;
  cursor: pointer;
  z-index: 1;
  -webkit-touch-callout: none;
  /* iOS Safari */
  -webkit-user-select: none;
  /* Safari */
  -khtml-user-select: none;
  /* Konqueror HTML */
  -moz-user-select: none;
  /* Old versions of Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;

}

.lang-container>div.lang {
  opacity: 0.7;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: url('/images/lang-btn-off.png') no-repeat center center;
  background-size: contain;
  cursor: pointer;
  margin: 0 10px;
  transition: all 0.1s;
}

.lang-container>div.lang.show:hover, .lang-container>div.lang:hover {
  opacity: 1;
}

.lang-container>div.lang.on {
  background: url('/images/lang-btn-on.jpg') no-repeat center center;
  color: #0d1319;
  opacity: 1;
  display: flex;
}

.lang-container>div.lang.on:hover {
  opacity: 1;
}

.lang-container>div.lang.show {
  display: flex;
  opacity: 0.7;
}

/* #region Modal */
/* The Modal (background) */
.modal {
  opacity: 0;
  display: none;
  /* Hidden by default */
  position: fixed;
  /* Stay in place */
  z-index: 1;
  /* Sit on top */
  left: 0;
  top: 0;
  width: 100%;
  /* Full width */
  height: 100%;
  /* Full height */
  height: 100dvh;
  /* Full height */
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  touch-action: none;
}

/* Modal Content */
.modal-content {
  margin: auto;
  width: 90%;
  max-width: 2400px;
  text-align: center;
  display: flex;
}

/* The Close Button */
.close {
  color: #aaaaaa;
  float: right;
  font-size: 60px;
  font-weight: bold;
  position: absolute;
  top: 1%;
  right: 2%;
  opacity: 0.6;
}

.close:hover,
.close:focus {
  opacity: 0.7;
  text-decoration: none;
  cursor: pointer;
}

/* #endregion Modal */

/* #region About */
.about {
  background: url(/images/about-bg.jpg) no-repeat center center;
  @supports (background-image: url('/images/about-bg.webp')) {
    background-image: url('/images/about-bg.webp');
  }
  background-size: cover;
  text-align: center;
  padding: 1.5em 0 5em 0;
}

.about h1 {
  color: #5e6f72;
  font-family: 'Supreme-Bold', sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  margin: 1.5em 0;
}

.about .info {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  width: fit-content;
  margin: 0 auto
}

.about .info .bracket-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 120px;
  margin: 0 20px;
}

.about .info .bracket-container img {
  height: 16px;
}

.about table {
  margin: 0 auto;
}

.about table.mobile-only {
  display: none;
}

.about table thead {
  background: url('/images/about-container.png') no-repeat top center;
  background-size: cover;
}

.about table tr th {
  height: 46px;
  text-transform: uppercase;
  color: #9cb6b9;
  font-family: 'Supreme-Medium', sans-serif;
  font-size: 13px;
  position: relative;
}

.about table tr th img.accent {
  width: 30px;
  height: auto;
  position: absolute;
  bottom: -0.3;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about table tr td {
  height: 40px;
  color: #c1e0e3;
  font-family: 'Supreme-bold', sans-serif;
}

.about table tr th,
.about table tr td {
  text-align: center;
  vertical-align: middle;
  min-width: 190px
}

/* #endregion About */

/* #region Youtube video player */
.auto-resizable-iframe {
  width: 100%;
  margin: 0px auto;
}

.auto-resizable-iframe>div {
  position: relative;
  padding-bottom: 56%;
  height: 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auto-resizable-iframe>div.inside-frame::before {
  background: url(/images/video-thumbnail.jpg) center center;
  @supports (background-image: url('/images/video-thumbnail.webp')) {
    background-image: url('/images/video-thumbnail.webp');
  }
  background-size: 100%;
  filter: brightness(70%);
  transition: all 0.2s ease-out;
  width: 100%;
  height: 100%;
  content: ' ';
  position: absolute;
  margin-top: 56%;
}

.auto-resizable-iframe>div.inside-frame:hover::before {
  background-size: 105%;
  filter: brightness(100%);
}

.auto-resizable-iframe>div.player {
  width: 100%;
  margin: 0 auto;
}

.auto-resizable-iframe iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

/* #endregion Youtube video player */

/* #region Main */
.container {
  display: flex;
  flex-flow: column;
}

.container .main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  width: 100%;
  overflow: hidden;
  min-height: 100dvh;
  margin: 0 auto;
  text-align: center;
}

.container .main .snap {
  scroll-snap-align: start;
}

.container .main .video {
  display: flex;
  flex-direction: row;
  width: 100%;
  cursor: pointer;
  user-select: none;
  flex: 1;
}

.container .main .top-accent {
  width: 10%;
  max-width: 240px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}

.container .main .logo {
  width: 50%;
  max-width: 800px;
  margin: 0rem auto;
  padding: 2em 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1;
}

.container .main .watch-trailer-container {
  display: none;
}

.container .main .logo img.logo-if {
  width: 100%;
  max-width: 600px;
}

.container .main .video .video-frame-container {
  background: url(/images/video-frame.png) no-repeat center center;
  @supports (background-image: url('/images/video-frame.webp')) {
    background-image: url('/images/video-frame.webp');
  }
  background-size: cover;
  width: 60%;
  padding: 0.9%;
  margin: 0 auto;
  opacity: 0;
}

.container .main .video .video-frame-container .btn-play {
  margin-top: 56%;
  width: 8%;
  z-index: 1;
}

.container .main .video .video-frame-container .btn-play:hover {
  box-shadow: #c1e0e3 4px;
  box-shadow: 1px 1px 33px -2px rgba(193, 224, 227, 0.59);
  -webkit-box-shadow: 1px 1px 33px -2px rgba(193, 224, 227, 0.59);
  -moz-box-shadow: 1px 1px 33px -2px rgba(193, 224, 227, 0.59);
}

.container .main .video .video-side {
  width: 20%;
  position: absolute;
  height: 100%;
  top: 0;
  background-image: url('/images/banner-left.png');
  @supports (background-image: url('/images/banner-left.png')) {
    background-image: url('/images/banner-left.png');
  }
  background-size: cover;
  background-repeat: no-repeat;
}

.container .main .video .video-side>img {
  width: 100%;
  position: absolute;
  top: -100%;
  left: 0;
}

.container .main .arrow-container {
  flex: 1;
}

.container .main .arrow-container .arrow {
  max-width: 30px;
}

/* #endregion Main */

/* #region Footer */
img.footer-divider {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

footer {
  background-color: #090b0d;
}

footer.footer-container {
  background: #0f1418;
  color: #fff;
  padding: 1em 0 0 0;
  text-align: center;
  min-height: 200px;
  display: flex;
  flex-direction: column;
}

footer.footer-container .footer-social {
  display: flex;
  flex: 1;
  width: 100%;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  max-width: 1920px;
  margin: 0 auto;
}

footer.footer-container .footer-lowiro {
  width: 100%;
  background: #090b0d;
  color: #ffffff;
  margin: 0 auto;

}

footer.footer-container .footer-social .side {
  width: 25%;
  max-width: 200px;
  text-align: center;
}

footer.footer-container .footer-social img.logo-steam {
  opacity: 0.5;
  height: 50px;
}

footer.footer-container .footer-social .social-link {
  display: flex;
}

footer.footer-container .footer-social .social-link img.border {
  height: 70px;
}

footer.footer-container .footer-social .social-link ul {
  list-style: none;
  padding: 0;
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  flex-direction: row;
  margin: 0 20px;
}

footer.footer-container .footer-social .social-link ul .social-logo {
  background-color: #0f1418;
  width: 50px;
  height: 100%;
  margin: 0 8px;
  cursor: pointer;
  position: relative;
}

footer.footer-container .footer-social .social-link ul .social-logo>a {
  width: 100%;
  height: 100%;
  position: absolute;
  transform: translate(-50%, 0);
  cursor: pointer;
}

footer.footer-container .footer-social .social-link ul .social-logo.x {
  background: url('/images/footer-x.png') no-repeat center center;
  background-size: contain;
}

footer.footer-container .footer-social .social-link ul .social-logo.x:hover {
  background-image: url('/images/footer-x-hover.png');
}

footer.footer-container .footer-social .social-link ul .social-logo.fb {
  background: url('/images/footer-fb.png') no-repeat center center;
  background-size: contain;
}

footer.footer-container .footer-social .social-link ul .social-logo.fb:hover {
  background-image: url('/images/footer-fb-hover.png');
}

footer.footer-container .footer-social .social-link ul .social-logo.bili {
  background: url('/images/footer-bili.png') no-repeat center center;
  background-size: contain;
}

footer.footer-container .footer-social .social-link ul .social-logo.bili:hover {
  background-image: url('/images/footer-bili-hover.png');
}

footer.footer-container .footer-social .social-link ul .social-logo.tt {
  background: url('/images/footer-tt.png') no-repeat center center;
  background-size: contain;
}

footer.footer-container .footer-social .social-link ul .social-logo.tt:hover {
  background-image: url('/images/footer-tt-hover.png');
}

footer.footer-container .footer-social .footer-logo {
  width: 100%;
}

footer.footer-container .footer-lowiro .footer-lowiro-container {
  width: 98%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  height: 60px;
}

footer.footer-container .footer-lowiro .footer-lowiro-container .footer-logo-lowiro img {
  height: 50%;
  max-height: 32px;
  width: auto;
}

footer.footer-container .footer-lowiro div {
  width: 33%;
}

footer.footer-container .footer-lowiro div.copyright {
  text-align: left;
  font-size: 10px;
  margin-left: 1%;
  white-space: nowrap;
}

footer.footer-container .footer-lowiro div.copyright p:first-child {
  margin-bottom: 4px;
}

footer.footer-container .footer-lowiro div.contact {
  text-align: right;
  font-size: 12px;
  margin-right: 1%;
  font-family: 'Supreme-Bold', sans-serif;
}
footer.footer-container .footer-lowiro div.contact > a {
  text-decoration: none; 
  color: #fff;
  position: relative;
  display: inline-block;
}
footer.footer-container .footer-lowiro div.contact > a::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: #fff;
  transition: transform 0.25s ease-out;
  transform-origin: bottom left;
}
footer.footer-container .footer-lowiro div.contact > a:hover::after {
  transform: scaleX(1);
}

/* #endregion Footer */

/* #region Body */
body {
  width: 100%;
  min-height: 100dvh;
  background: url('/images/web-bg.jpg') repeat-y top center;
  @supports (background-image: url('/images/web-bg.webp')) {
    background-image: url('/images/web-bg.webp');
  }
  background-size: cover;
  font-family: 'Supreme-Regular', sans-serif;
  font-weight: 500;
  color: #fff;
  background-color: #090b0d;
  overscroll-behavior: contain;
}

.triangle-layer {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}

.triangle-layer svg#triangle-svg {
  width: 100%;
  height: 100%;
}

/* #endregion Body */

/* #region Animation */
@keyframes fadeInFromNone {
  0% {
    opacity: 0;
  }

  80% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.3;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.startFadeIn {
  animation: fadeIn 2s ease-in;
}

/* #endregion Animation */

/* #region Portrait */
@media screen and (orientation: portrait) {
  body {
    background: url('/images/mobile-bg.jpg') repeat-y top center;
    @supports (background-image: url('/images/mobile-bg.webp')) {
      background-image: url('/images/mobile-bg.webp');
    }
    background-size: cover;
  }

  .container .main .video .video-side {
    display: none;
  }

  .container .main .video .video-frame-container {
    max-width: unset;
    width: 95%;
    padding: 1.5%;
    margin-bottom: 10dvh;
  }
}

/* #endregion Portrait */

/* #region Mobile */
@media only screen and ((max-device-width: 640px) or (width <=640px)) {
  .desktop-only {
    display: none;
  }
  .modal {
    background: rgba(0, 0, 0, 1);
  }

  .modal-content {
    width: 100%;
  }

  .close {
    font-size: 4.5rem;
    top: 1rem;
    right: 1.5rem;
  }

  .lang-container {
    top: 0.8%;
    margin-right: 1%;
  }

  .lang-container>div.lang {
    min-width: 40px;
    min-height: 40px;
    font-size: 0.7rem;
    margin: 0 4px;
    display: none;
  }

  .lang-container>div.lang.on {
    display: flex;
  }

  .container .main {
    height: 200svh;
    align-items: flex-start;
  }

  .container .main .top-accent {
    width: 20%;
    max-width: 320px;
  }

  .container .main .logo {
    height: 80svh;
    width: 70%;
    flex: unset;
  }

  .container .main .logo img.logo-if {
    width: 100%;
    max-width: 900px;
  }

  .container .main .watch-trailer-container {
    height: 20svh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }

  .container .main .watch-trailer-container img.watch-trailer {
    cursor: pointer;
    animation: blinker 0.7s linear 2;
    animation-delay: 2s;
    max-height: 2.5rem;
  }

  .container .main .video {
    height: 110%;
    height: 110vh;
    height: 110svh;
    align-items: center;
    flex: unset;
  }

  .about table.mobile-only,
  .about table.mobile-only tbody {
    display: block;
    width: 100%;
  }

  .about table.desktop-only {
    display: none;
  }

  .about .info {
    width: 80%;
    position: relative;
  }

  .about .info .bracket-container {
    height: 100%;
    position: absolute;
    top: -6%;
  }

  .about .info .bracket-container.left {
    left: -12%;
  }

  .about .info .bracket-container.right {
    right: -12%;
  }

  .about .info .bracket-container img {
    height: 2.5%;
  }

  .about h1 {
    font-size: 1.5rem;
    margin: 1em 0 3em 0;
  }

  .about table tr {
    width: 100%;
    display: table;
    font-size: 1.25rem;
  }

  .about table tr th {
    background: url('/images/about-container.png') no-repeat top center;
    background-size: cover;
    font-size: 1.35rem;
  }

  .about table tr th,
  .about table tr td {
    height: 3.5rem;
  }

  .about table tr th img.accent {
    width: 1.5rem;
  }

  .about table tr:nth-child(2n) {
    margin-bottom: 2rem;
  }

  footer.footer-container .footer-social {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
  }

  footer.footer-container .footer-social>div {
    margin: 0.5rem 0;
  }

  footer.footer-container .footer-social .side {
    width: 30%;
    max-width: unset;
  }

  footer.footer-container .footer-social .social-link {
    width: 70%;
  }

  footer.footer-container .footer-social .social-link img.border {
    height: 4rem;
  }

  footer.footer-container .footer-social .social-link ul {
    width: 100%;
    margin: 0 auto;
  }

  footer.footer-container .footer-social .social-link ul .social-logo {
    width: 100%;
    margin: 0 0.85rem;
  }

  footer.footer-container .footer-social img.logo-steam {
    height: unset;
    width: 80%;
  }

  footer.footer-container .footer-lowiro .footer-lowiro-container {
    flex-direction: column-reverse;
    height: unset;
  }

  footer.footer-container .footer-lowiro .footer-lowiro-container .footer-logo-lowiro img {
    height: 100%;
    max-height: 110px;
    margin: 1.5rem auto;
    padding: 1rem 0;
  }

  footer.footer-container .footer-lowiro div {
    width: 100%;
  }

  footer.footer-container .footer-lowiro div.contact {
    display: none;
  }

  footer.footer-container .footer-lowiro div.copyright {
    font-size: 0.6rem;
    text-align: center;
    margin: 0 auto 1rem auto;
    white-space: unset;
    width: 95%;
  }

  .auto-resizable-iframe>div.player {
    width: 100%;
  }

  footer.footer-container {
    border-bottom: 8px solid #090b0d;
  }

  @keyframes blinker {
    30% {
      opacity: 0;
    }
  }
}

/* #endregion Mobile */