<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">html {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

html:before {
  content: '';
  position: fixed;
  width: 100%;
  height: 1000px;
  top: -999px;
  background-color: #FEF66F;
}

body {
  background-image:
    linear-gradient(#FEF66F, #740722);
  background-position: top;
  background-repeat: no-repeat;
}

@media (max-aspect-ratio: 1.3332) {
  .video-container {
    width: 100%;
    aspect-ratio: 0.5625;
    position: relative;
  }

  #Horizontal-Video {
    display: none;
  }

  #video_link_mobile {
    display: inline-block;
  }

  #video_link_pc {
    display: none;
  }

  .media {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    margin: 40px 8px 60px 8px;
    gap: 20px;
  }

  .appstore {
    height: 66px;
    margin-bottom: 40px;
  }
}

@media (min-aspect-ratio: 1.3333) {
  .video-container {
    width: 100%;
    aspect-ratio: 1.7777777778;
    position: relative;
  }

  #Vertical-Video {
    display: none;
  }

  #video_link_mobile {
    display: none;
  }

  #video_link_pc {
    display: inline-block;
  }

  .media {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto;
    grid-template-rows: 1fr auto;
    grid-template-areas:
      "content image"
      "footer image";
    grid-gap: 32px;
    margin: 40px 8px 40px 8px;
  }

  .appstore {
    height: 88px;
    margin-bottom: 40px;
  }
}

.video-container video {
  height: 100%;
  opacity: 0.5;
  position: absolute;
  object-fit: cover;
  z-index: 0;
}

.video-container .overlay {
  height: 100%;
  width: 100%;
  position: absolute;
  object-fit: cover;
  z-index: 1;
}

.video-container .title {
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  flex-shrink: 1;
}

.img {
  grid-area: image;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.trailer {
  position: relative;
  top: 0;
  left: 0;
  height: 315px;
  aspect-ratio: 1.7777777778;
  max-width: 100%;
  z-index: 1;
}

.parent {
  position: relative;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.play-button {
  z-index: 2;
  position: absolute;
}

.content {
  grid-area: content;
  font-size: 24px;
  color: white;
}

.h2 {
  font-size: 48px;
  font-weight: 900;
  color: white;
  text-align: center;
}

.screenshots-title {
  font-size: 48px;
  font-weight: 900;
  color: white;
  text-align: center;
  margin-bottom: 12px;
}

@media (max-width: 340px) {
  .content {
    grid-area: content;
    font-size: 16px;
    color: white;
  }

  .h2 {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-align: center;
  }

  .screenshots-title {
    font-size: 28px;
    font-weight: 900;
    color: white;
    text-align: center;
    margin-bottom: 12px;
  }
}

.footer {
  grid-area: footer;
}

.centering-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.fill {
  width: 100%;
}



.screenshots {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 4px 12px 4px;
}

.screenshot {
  max-width: 100%
}

.press-link {
  font-size: 24px;
  font-weight: 900;
  color: white;
  text-align: center;
  margin: 32px 12px 12px 12px;
}

.logo-container {
  text-align: center;
  margin: 32px 12px 12px 12px;
}

.logo {
  display: inline-block;
  max-width: 100%;
  height: auto;
}

.privacy {
  width: 100%;
  height: 30px;
  text-align: center;
}

.bottom {
  width: 100%;
  height: 50px;
}</pre></body></html>