@import url("https://fonts.googleapis.com/css2?family=Aclonica&display=swap");
:root {
  --font-ff-gajraj: 'Aclonica', sans-serif;
  --font-w-light: 300;
  --font-w-regular: 400;
  --font-w-bold: 700;
  --fs-500: 1.375rem;
  --fs-600: 2rem;
  --fs-800: 2.9375rem;
  scroll-behavior: smooth;
}
@media (min-width: 100em) {
  :root {
    --fs-500: 1.875rem;
    --fs-600: 2.3125rem;
    --fs-800: 3.625rem;
  }
}

/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  width: 100vw;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  overflow: hidden;
  background-color: var(--clr-main-background);
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

[hidden] {
  display: none;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

html,
body {
  position: relative;
  overflow: hidden;
  display: grid;
  place-content: center;
  user-select: none;
}

img {
  user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
}

use {
  pointer-events: none;
}

ul {
  list-style: none;
  padding-inline-start: 0;
  margin-block-end: 0;
  margin-block-start: 0;
}

body {
  font-family: var(--font-ff-gajraj);
}

@keyframes fade {
  0% {
    opacity: 0;
    transform: scale(0.6);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes robot {
  0% {
    opacity: 0;
    transform: scale(3) translateY(-25rem);
  }
  100% {
    opacity: 1;
    transform: scale(3) translateY(5rem);
  }
}
@keyframes zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(2);
  }
}
.theme__main {
  --clr-name-main: ;
  --clr-main-white: #f3f3f3;
  --clr-main-black: #0c0c13;
  --clr-main-background: #381732;
  --clr-main-secondary: #6f286a;
}

.skip {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 10vh;
  opacity: 0.2;
  transition: opacity 1000ms;
}

.hide {
  opacity: 0;
  pointer-events: none;
  height: 0;
}

.transition {
  position: absolute;
  left: 0;
  top: 0;
  height: 100vh;
  width: 100vw;
  z-index: 50;
  transition: transform 200ms, opacity 1200ms;
  transform: scaleY(0);
  transform-origin: bottom;
  background-color: var(--clr-main-black);
  pointer-events: none;
  opacity: 0;
}
.transition__open {
  transform-origin: top;
  opacity: 1;
  transform: scaleY(1);
}

.white {
  background-color: var(--clr-main-white);
  transition: opacity 5000ms;
  opacity: 1;
  transform: scaleY(1);
}

.intro {
  animation: fade forwards 5500ms;
}
.intro__robot {
  animation: robot forwards 9500ms;
}
.intro__zionx {
  animation: zoom forwards 9500ms;
}

.title {
  width: 75%;
  animation: fade forwards 8200ms;
}

.playground {
  width: 85vw;
  height: 85vh;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  transition: opacity 500ms;
  position: relative;
}
.playground__canvas {
  cursor: none;
  outline: solid 10px #000;
}
.playground__gamezone {
  height: 90%;
  width: 100%;
  position: relative;
}
.playground__gamezone::before {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  opacity: 0.6;
  z-index: 20;
  pointer-events: none;
}
.playground__gamezone-player {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.playground__gamezone-crosshair {
  position: absolute;
  inset: 0;
  margin: auto;
}
.playground__gamezone-hit::before {
  background-color: red;
}
.playground__gamezone-drink::before {
  background-color: #e7e7e7;
}
.playground__dialog {
  position: absolute;
  top: 10vh;
  left: 0.5rem;
  width: 80vw;
  right: 0.5rem;
  padding: 0.5rem;
  margin: auto;
  font-size: 28px;
  pointer-events: none;
  transition: opacity 300ms;
  background-color: #000;
  color: var(--clr-main-white);
  z-index: 10;
  font-size: 1.3rem;
}
.playground__stat {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 11rem;
  height: 100%;
  box-shadow: -5px 0px 0px 0px #000;
}
.playground__stat:last-child {
  box-shadow: -5px 0px 0px 0px #000, 5px 0px 0px 0px #000;
}
.playground__face {
  width: 5rem;
}
.playground__label {
  opacity: 0.75;
  font-size: 1.5rem;
}
.playground__value {
  font-size: 1.5rem;
  transform: scaleY(1.3);
}
.playground__stats {
  width: 100%;
  outline: solid 10px #000;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  color: var(--clr-main-white);
  background-color: var(--clr-main-secondary);
}

.theater {
  width: 85vw;
  height: 85vh;
  position: absolute;
  overflow: hidden;
  inset: 0;
  margin: auto;
  text-align: center;
  color: var(--clr-main-white);
  font-size: 3.5rem;
  transition: opacity 500ms;
  background-color: var(--clr-main-black);
}
.theater img {
  position: absolute;
  inset: 0;
  margin: auto;
}

.mainmenu {
  width: 80vw;
  height: 80vh;
  text-align: center;
  color: var(--clr-main-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.mainmenu__title {
  font-size: 6rem;
}
.mainmenu__options {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
  font-size: 2rem;
}
.mainmenu__logo {
  margin-bottom: 3rem;
}
.mainmenu__option {
  cursor: pointer;
  outline: solid var(--clr-main-white) 2px;
  width: 25rem;
  transition: outline 100ms, transform 300ms;
}
.mainmenu__option:hover {
  outline: solid var(--clr-main-white) 4px;
}
.mainmenu__option:active {
  transform: scale(0.9);
}
.mainmenu__canvas {
  width: 100%;
  height: 100%;
  z-index: -1;
  position: absolute;
  inset: 0;
}
.mainmenu__credits {
  font-size: 1.25rem;
  margin-top: 2rem;
}
.mainmenu__link {
  color: #56acfc;
}
.mainmenu__link:visited {
  color: #56acfc;
  opacity: 0.8;
}

.editor {
  color: var(--clr-main-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 1rem;
}
.editor__layout {
  width: 70vw;
  height: 90vh;
  background-color: var(--clr-main-secondary);
}
.editor__properties {
  width: 15vw;
  height: 90vh;
  background-color: var(--clr-main-secondary);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: column;
  border: solid var(--clr-main-white);
  padding: 0.5rem;
  gap: 1rem;
}
.editor__properties-entities, .editor__properties-basic {
  width: 85%;
}
.editor__entity, .editor__basic {
  cursor: pointer;
  margin-left: 0.75rem;
}
.editor__upload {
  width: 8.5rem;
}
.editor__selected {
  text-decoration: underline;
}
.editor__selected::before {
  content: ">";
}
.editor__cell {
  background-color: var(--clr-main-white);
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  color: #000;
  text-align: center;
}

[data-base-entity="2"] {
  background: rgb(232, 147, 138);
}

[data-base-entity="1"] {
  background: #9292f5;
}/*# sourceMappingURL=main.css.map */