@import"https://fonts.googleapis.com/css2?family=Bungee&display=swap";
    * {
    margin: 0;
    padding: 0;
}
html, body {
    overflow: hidden;
    font-family: Bungee, Arial, Helvetica, sans-serif;
}
.loading-container {
    position: absolute;
    bottom: 50%;
    width: 100%;
    pointer-events: none;
}
.loading-sprite {
    position: relative;
    width: 75px;
    height: 75px;
    left: 100%;
    transition: left .5s;
}
.loading-sprite.ended {
    translate: -100% 0;
    opacity: 0;
    transition: opacity 2s, translate 2s;
}
.loading-bar {
    position: relative;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transform: scaleX(.3);
    transform-origin: top right;
    transition: transform .5s;
}
.loading-bar.ended {
    transform: scaleX(0);
    transform-origin: 0 100%;
    opacity: 0;
    transition: transform 1.5s ease-in-out, opacity 2s;
}
.hide {
    opacity: 0;
    scale: 0;
    translate: 0 -10px;
    transition: opacity .5s 0s, scale .5s .5s, translate .5s 0s;
    pointer-events: none;
}
.menu {
    position: absolute;
    left: 50%;
    top: 60%;
    translate: -50% 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
.menu-button {
    position: relative;
    width: 250px;
    max-width: 80%;
    height: 40px;
}
.instagram {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    bottom: 25px;
    opacity: 0;
    scale: 0;
    cursor: pointer;
}
.instagram.visible {
    scale: 1;
    opacity: 1;
    transition: opacity .5s, scale .5s;
}
.instagram.visible:hover {
    scale: 1.05;
}
.instagram.visible:active {
    scale: .9;
}
.button {
    border-radius: 15px;
    background-color: #000000b3;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    opacity: 0;
    scale: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button.visible {
    scale: 1;
    opacity: 1;
    transition: opacity .5s, scale .5s;
}
.button.visible:hover {
    background-color: #000;
    scale: 1.05;
}
.button.visible:active {
    scale: .9;
}
.back-button {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 80px;
    height: 40px;
}
.next-dev {
    position: absolute;
    width: 100%;
    bottom: 3.5%;
    display: flex;
    justify-content: center;
    gap: 30px;
}
.next-dev-button {
    position: relative;
    width: 140px;
    height: 40px;
}
.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
}
.dialogue {
    position: absolute;
    left: 50%;
    top: 0px;
    translate: -50% 50px;
    background-color: #111111f2;
    color: #fff;
    border-radius: 10px;
    padding: 1.25rem;
    width: 80%;
    max-width: 450px;
    opacity: 0;
    scale: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}
.dialogue__row {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 1rem;
}
.dialogue__row-center {
    justify-content: center;
    align-items: center;
}
.dialogue__row.dialogue__row-grow>* {
    flex-grow: 1;
    flex-shrink: 1;
}
.dialogue__row.dialogue__row-wrap {
    flex-wrap: wrap;
}
.dialogue__col {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    gap: .25rem;
}
.dialogue__figure {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0;
}
.dialogue__figure img {
    object-fit: contain;
    width: 100%;
    height: auto;
}
.secret-photo {
    position: absolute;
    width: 125px;
    opacity: 0;
    transition: opacity .3s;
}
.secret-photo.visible {
    opacity: 1;
    transition: opacity .3s;
}
.dialogue__dimmed {
    opacity: .85;
}
.dialogue__info {
    flex: 1 0 auto;
    justify-content: center;
    align-items: center;
}
.dialogue__name {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
    line-height: 28px;
}
.dialogue__title {
    font-size: 16px;
    line-height: 22px;
    margin: 0;
    color: #dc0000;
}
.dialogue__bio {
    font-family: Arial, Helvetica, sans-serif;
    font-size: .9rem;
}
.dialogue__header {
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}
.dialogue__profile {
    background-color: #0a0a0a;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 0 0 125px;
}
.dialogue__hobby {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 4px;
    background-color: #0a0a0a;
    border-radius: 10px;
    padding: 4px;
    scale: 1;
    transition: all .1s;
    transition-timing-function: ease-in-out;
}
.dialogue__hobby-icon {
    width: 50px;
}
.dialogue__hobby-name {
    font-size: .8rem;
    margin: 0;
    opacity: 1;
    transition: all .3s;
}
.dialogue__hobby:hover {
    scale: 1.05;
}
.dialogue__hobby:hover .dialogue__hobby-name {
    opacity: 1;
}
.dialogue__social_media {
    position: relative;
    width: 1.75rem;
    height: 1.75rem;
}
.dialogue__social_media>* {
    width: 100%;
    height: 100%;
    translate: 0 0;
    transition: all .1s;
}
.dialogue__social_media:hover>* {
    translate: 0 -.1rem;
}
.dialogue__social_media:active>* {
    translate: 0 .1rem;
}
.dialogue.visible {
    scale: 1;
    opacity: 1;
    transition: opacity 1s;
}
.dialogue.hide {
    opacity: 0;
    scale: 0;
    transition: opacity .2s 0s, scale .5s .5s;
}
.speech-bubble {
    position: absolute;
    background: #00000094;
    color: #fff;
    border-radius: 15px;
    width: 300px;
    left: 50%;
    translate: -50% 0;
    bottom: 26%;
    min-height: 20px;
    margin: 50px auto;
    padding: 15px;
    text-align: center;
    line-height: 20px;
    opacity: 0;
    scale: 0;
}
.sb1:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid #00000094;
    border-top: 10px solid #00000094;
    border-bottom: 10px solid transparent;
    left: 50%;
    translate: -70px 0;
    top: 100%}
.speech-bubble.hide {
    opacity: 0;
    scale: 0;
    transition: opacity .2s 0s, scale .5s .5s;
}
.speech-bubble.visible {
    scale: 1;
    opacity: 1;
    transition: opacity 1s;
}
.faq-container {
    position: absolute;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    justify-content: top;
    align-items: top;
    width: 90%;
    max-width: 500px;
    left: 50%;
    bottom: 30px;
    translate: -50% 0;
    max-height: 40%;
    opacity: 0;
    scale: 0;
}
.faq-questions {
    position: relative;
    background-color: #000000b3;
    border-radius: 7px;
    overflow-y: scroll;
    overflow-y: auto;
}
.shadow-bot {
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100px;
    width: 100%;
    border-radius: 7px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .8) 90%);
}
.shadow-top {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100px;
    width: 100%;
    border-radius: 7px;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(0, 0, 0, .8) 0%, rgba(0, 0, 0, 0) 90%);
}
.shadow-bot.hide {
    opacity: 0;
    transition: opacity .2s;
}
.shadow-bot.visible {
    opacity: 1;
    transition: opacity .2s;
}
.faq-container.visible {
    scale: 1;
    opacity: 1;
    transition: opacity .5s, scale .5s;
}
.faq-question {
    border-radius: 7px;
    margin: 5px;
    background-color: #fff;
    color: #000;
    text-align: center;
    line-height: 20px;
    font-size: 16px;
    padding: 5px;
    opacity: .8;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.faq-question.selected {
    background-color: #666;
}
.faq-question:hover {
    opacity: 1;
}
.faq-answer {
    position: absolute;
    background: #00000094;
    color: #fff;
    border-radius: 15px;
    width: 500px;
    max-width: 90%;
    left: 50%;
    translate: -50% 0;
    bottom: 52%;
    min-height: 20px;
    margin: 50px auto;
    padding: 15px;
    text-align: center;
    line-height: 20px;
    opacity: 0;
    scale: 0;
}
.sb2:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid #00000094;
    border-top: 10px solid #00000094;
    border-bottom: 10px solid transparent;
    left: 50%;
    translate: -40px 0;
    top: 100%}
.faq-answer.hide {
    opacity: 0;
    scale: 0;
    transition: opacity .2s 0s, scale .5s .5s;
}
.faq-answer.visible {
    scale: 1;
    opacity: 1;
    transition: opacity 1s;
}
.copyright {
    position: absolute;
    color: #fff;
    left: 50%;
    translate: -50% 0;
    bottom: 4px;
    width: 100%;
    line-height: 15px;
    font-size: 14px;
    text-align: center;
    opacity: .8;
    pointer-events: none;
}
.nopointer {
    pointer-events: none;
}
.autopointer {
    pointer-events: auto;
}
.page-controller {
    position: absolute;
    right: 0px;
    top: 50%;
    translate: -50% -50%;
    scale: 0;
    opacity: 0;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: top;
    gap: 15px;
}
.page-controller.visible {
    scale: 1;
    opacity: 1;
    transition: opacity 5s;
}
.page-dot {
    position: relative;
    height: 18px;
    width: 18px;
    background-color: #ffffff48;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color .25s;
}
.page-dot:hover {
    scale: 1.1;
    background-color: #fff;
    transition: scale 1s background-color .25s;
}
.page-dot.selected {
    scale: 1.1;
    background-color: #fff;
}
.page-circle {
    background-color: #fff0;
    border: 2px solid rgb(255, 255, 255);
    height: 150%;
    width: 150%;
    translate: -22% -22%;
    scale: 0;
    border-radius: 50%;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    transition: scale .5s;
}
.page-circle.selected {
    scale: 1;
    border: 2px solid rgb(255, 255, 255);
    transition: scale .5s;
}
.no-highlight {
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.product-page {
    pointer-events: none;
    color: #fff;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    width: 90%;
    font-size: medium;
    text-align: center;
    opacity: 0;
    transition: opacity .2s;
}
.page-title {
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    left: 50%;
    transform: -50%;
    max-width: 95%;
    text-align: left;
    font-size: 36px;
    line-height: 40px;
    opacity: 0;
    transition: opacity 0s .2s;
}
.product-page.visible {
    opacity: 1;
}
.product-description {
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    opacity: 0;
    transition: opacity 0s .2s;
    line-height: 20px;
}
.product-button {
    border-radius: 15px;
    color: #fff;
    text-align: center;
    line-height: 30px;
    cursor: pointer;
    background-color: #ffffff4d;
    transition: opacity .5s, scale .5s, background-color .5s;
}
.product-button:hover {
    background-color: #ffffff1a;
    scale: 1.05;
}
.product-button:active {
    scale: .9;
}
.product-page1 {
    top: 10%}
.page1-title {
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    width: 450px;
    max-width: 100%;
    opacity: 0;
    transition: opacity 0s .2s;
}
.product-page2 {
    top: 45px;
}
.page2-description {
    text-align: left;
    line-height: 20px;
}
.page2-explore-button {
    left: 0;
    width: 150px;
}
.preview-controller-container {
    padding-top: 10px;
    opacity: 0;
    transition: opacity 0s .2s;
}
.preview-controller {
    left: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: top;
    align-items: top;
    gap: 12px;
    padding-top: 6px;
    padding-bottom: 11px;
}
.preview-dot {
    position: relative;
    height: 22px;
    width: 22px;
    border-radius: 15%;
    cursor: pointer;
    scale: 1;
    transition: scale .25s;
}
.preview-dot:active {
    scale: .9;
}
.preview-dot.selected {
    scale: 1.2;
    transition: scale .5s;
}
.preview-circle {
    translate: -5% -5%;
    height: 85%;
    width: 85%;
    border-radius: 15%;
    border: 2px solid rgb(255, 255, 255);
    opacity: 0;
    transition: opacity .5s;
}
.preview-circle.selected {
    opacity: 1;
    transition: opacity .5s;
}
.product-page3 {
    top: 45px;
    bottom: 0%}
.page3-description {
    text-align: left;
}
.visit-button-container {
    opacity: 0;
    transition: opacity 0s .2s;
}
.page3-visit-button {
    position: absolute;
    bottom: 10%;
    left: 50%;
    translate: -50% 0;
    width: 150px;
}
.page3-feature-container {
    padding-top: 5px;
    position: absolute;
    left: 50%;
    translate: -50% 0;
    display: flex;
    width: 100%;
    max-width: 1000px;
    height: 46%;
    max-height: 500px;
    opacity: 0;
    transition: opacity 0s .2s;
}
.feature-box {
    position: relative;
    flex: 1;
    overflow: hidden;
    transition: .5s;
    margin: 0 1%;
    border: 2px solid rgb(255, 255, 255);
}
.feature-box>img {
    width: 200%;
    height: 100%;
    object-fit: cover;
    object-position: top left;
    transition: .5s;
    -webkit-filter: blur(2px) brightness(75%);
    -moz-filter: blur(2px) brightness(75%);
    -o-filter: blur(2px) brightness(75%);
    -ms-filter: blur(2px) brightness(75%);
    filter: blur(2px) brightness(75%);
}
.feature-label {
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    font-size: 20px;
    text-align: left;
    width: 300px;
    padding-top: 2px;
    padding-left: 18px;
    transform-origin: top left;
    transform: rotate(-90deg);
    pointer-events: none;
    line-height: 24px;
    transition: font-size .5s, opacity .5s;
}
.feature-box:hover {
    flex: 1 1 55%}
.feature-box:hover>img {
    width: 100%;
    height: 100%;
    -webkit-filter: brightness(40%);
    -moz-filter: brightness(40%);
    -o-filter: brightness(40%);
    -ms-filter: brightness(40%);
    filter: brightness(40%);
}
.feature-box:hover>.feature-label {
    opacity: .4;
    font-size: 14px;
    transition: font-size .5s opacity .5s;
}
.feature-description-container {
    position: absolute;
    width: 85%;
    top: 25%;
    left: 50%;
    translate: -50% 0;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: top;
    align-items: top;
    pointer-events: none;
}
.feature-description-title {
    font-size: 20px;
    opacity: 0;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    transition: opacity .1s;
}
.feature-description {
    font-size: 14px;
    opacity: 0;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    transition: opacity .1s;
}
.feature-box:hover .feature-description-title {
    opacity: 1;
    transition: opacity 1s .5s;
}
.feature-box:hover .feature-description {
    opacity: 1;
    transition: opacity 1s 1s;
}
.product-page4 {
    top: 45px;
    bottom: 0%}
.page4-description-box {
    height: 21px;
    opacity: 0;
    transition: opacity 0s .2s;
}
.page4-description {
    position: absolute;
    text-align: left;
    opacity: 0;
    transition: opacity .5s;
}
.page4-description.visible {
    opacity: 1;
    transition: opacity 1s .5s;
}
.page4-try-button {
    left: 0;
    width: 150px;
}
.try-button-container {
    padding-top: 5px;
    opacity: 0;
    transition: opacity 0s .2s;
}
.product-page5 {
    top: 45px;
    bottom: 0%}
.page5-description {
    text-align: left;
    line-height: 20px;
}
.compare-dot {
    position: relative;
    height: 22px;
    width: 22px;
    border-radius: 15%;
    cursor: pointer;
    scale: 1;
    background-color: #ffffff45;
    transition: scale .25s background-color .5s;
}
.compare-dot.picked {
    background-color: #fff;
    transition: background-color .5s;
}
.compare-dot:active {
    scale: .9;
}
.compare-dot.selected {
    scale: 1.2;
    transition: scale .5s;
}
.compare-circle {
    translate: -5% -5%;
    height: 85%;
    width: 85%;
    border-radius: 15%;
    border: 2px solid rgb(255, 255, 255);
    opacity: 0;
    transition: opacity .5s;
}
.compare-circle.selected {
    opacity: 1;
    transition: opacity .5s;
}
.item-info-container {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    width: 95%;
    bottom: 30%;
    opacity: 0;
    transition: opacity 0s .2s;
}
.item-info {
    position: absolute;
    left: 50%;
    translate: -50% 0;
    width: 100%;
    text-align: center;
    text-shadow: rgb(0, 0, 0) 1px 0 10px;
    opacity: 0;
    transition: opacity .5s;
}
.item-info.visible {
    opacity: 1;
    transition: opacity 1.5s .5s;
}
.item-name {
    font-size: 20px;
    line-height: 16px;
}
.item-title {
    opacity: .5;
    padding-top: 4px;
    padding-bottom: 4px;
    font-size: 16px;
    line-height: 16px;
}
.item-text {
    font-size: 16px;
    line-height: 16px;
}
.item-credits {
    opacity: .8;
    font-size: 12px;
    line-height: 16px;
}
.commentary-button {
    position: absolute;
    top: 5px;
    left: 5px;
    width: 170px;
    height: 40px;
    border-radius: 15px;
    background-color: #000000b3;
    color: #fff;
    text-align: center;
    line-height: 18px;
    font-size: 14px;
    opacity: 0;
    scale: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
	visibility: hidden;
}
.commentary-button>.label {
    padding-top: 2px;
}
.commentary-button.visible {
    scale: 1;
    opacity: .5;
    transition: opacity .5s, scale .5s;
}
.commentary-button:hover {
    background-color: #000;
    scale: 1.05;
    opacity: 1;
}
.commentary-container {
    position: absolute;
    right: 5px;
    bottom: 0px;
    opacity: 0;
    translate: 100% 0;
    transition: bottom .5s, opacity .5s, translate .5s;
}
.commentary-container.mobile-offset {
    bottom: 20px;
}
.commentary-container.vertical-offset {
    bottom: calc(3.5% + 42px);
}
.commentary-container.visible {
    opacity: 1;
    translate: 0% 0;
}
.commentary-container>img {
    width: 100px;
    height: 80px;
    cursor: pointer;
}
.commentary-portrait.scared {
    animation: horizontal-shaking .4s;
    animation-iteration-count: infinite;
}
@keyframes horizontal-shaking {
    0% {
    transform: translate(0);
}
25% {
    transform: translate(2.5px);
}
50% {
    transform: translate(-2.5px);
}
75% {
    transform: translate(2.5px);
}
to {
    transform: translate(0);
}
}.commentary-bubble {
    position: absolute;
    background: #000000bb;
    color: #fff;
    outline-style: solid;
    outline-width: 2px;
    outline-color: #fff;
    bottom: 90px;
    right: 5px;
    border-radius: 15px;
    width: 180px;
    min-height: 20px;
    padding: 15px;
    text-align: center;
    line-height: 20px;
    opacity: 0;
    scale: 0;
    cursor: pointer;
    transition: opacity .2s 0s, scale .5s .5s;
}
.commentary-bubble.visible {
    scale: 1;
    opacity: 1;
    transition: opacity 1s;
}
.sb3:before {
    content: "";
    width: 0px;
    height: 0px;
    position: absolute;
    border-left: 10px solid transparent;
    border-right: 10px solid #00000094;
    border-top: 10px solid #00000094;
    border-bottom: 10px solid transparent;
    right: 0%;
    translate: -65px 0;
    top: 100%}
.delay-1.visible {
    opacity: 1;
    transition: opacity 4s .5s;
}
.delay-2.visible {
    opacity: 1;
    transition: opacity 4s 1s;
}
.delay-3.visible {
    opacity: 1;
    transition: opacity 4s 1.5s;
}
.delay-4.visible {
    opacity: 1;
    transition: opacity 4s 2s;
}
.delay-5.visible {
    opacity: 1;
    transition: opacity 4s 2.5s;
}
.delay-6.visible {
    opacity: 1;
    transition: opacity 4s 3s;
}
