.loading_screen .loading-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  gap: 18px;
  flex-direction: column;
  place-items: center;
  text-align: center; }

.loading_screen .loading-text {
  font-size: 2em;
  /* relative to parent font size */
  color: #fdfdfd;
  font-weight: 300;
  letter-spacing: -0.04em;
  font-weight: 600;
  max-width: 380px; }
  .loading_screen .loading-text strong {
    font-weight: 800; }

/* Bar: fixed size, with inner padding */
.loading-bar {
  width: 410px;
  /* absolute width */
  height: 66px;
  /* absolute height */
  border: 3px solid #fdfdfd;
  border-radius: 999px;
  box-sizing: border-box;
  padding: 6px 20px;
  /* <-- inner padding lives here */
  overflow: hidden;
  /* mask to rounded corners */
  background: rgba(255, 255, 255, 0.06); }

/* Grid fills the content box (after padding), no extra padding here */
.loading-slots {
  --count:6;
  --gap:6px;
  --dur:2200ms;
  --stagger:260ms;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(var(--count), 1fr);
  gap: var(--gap);
  align-items: center; }

/* Center each cube in its cell */
.loading-slots .slot {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  overflow: hidden; }

/* Cubes shrink to inner height and never overflow width */
.loading-slots .cube {
  height: 100%;
  /* fill cell height (inner bar height) */
  max-height: 100%;
  width: auto;
  /* keep aspect ratio */
  max-width: 100%;
  /* don't overflow horizontally */
  object-fit: contain;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.15));
  opacity: 0;
  transform: scale(0.8);
  animation: cube-pop var(--dur) ease-in-out infinite;
  animation-delay: calc(var(--i) * var(--stagger)); }
  .loading-slots .cube img {
    height: 100%; }

@keyframes cube-pop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(6%); }
  10% {
    opacity: 1;
    transform: scale(1) translateY(0); }
  60% {
    opacity: 1;
    transform: scale(1) translateY(0); }
  80% {
    opacity: .25;
    transform: scale(0.95) translateY(2%); }
  100% {
    opacity: 0;
    transform: scale(0.8) translateY(6%); } }
.cookie-banner {
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  background: #7b69ac;
  color: #fdfdfd;
  z-index: 9999;
  border-top: 2px solid #fdfdfd;
  padding: 14px 12px;
  font-size: 15px;
  letter-spacing: -0.05em; }
  .cookie-banner .cookie-inner {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    padding: 0 20px;
    box-sizing: border-box;
    align-items: center;
    justify-content: space-between; }
  .cookie-banner .cookie-text {
    margin: 0;
    line-height: 1.4; }
    .cookie-banner .cookie-text a {
      color: #89d1f0;
      text-decoration: underline; }
  .cookie-banner .cookie-btn {
    color: #fdfdfd;
    border: 0;
    border-radius: 6px;
    padding: 10px 30px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Pronto',sans-serif;
    font-size: 1.4em;
    border-radius: 50px;
    border: 2px solid #fdfdfd;
    background: none; }
    .cookie-banner .cookie-btn:hover {
      background: #fdfdfd;
      color: #7b69ac; }
  @media (max-width: 700px) {
    .cookie-banner .cookie-inner {
      flex-direction: column;
      align-items: stretch;
      justify-content: center;
      align-items: center;
      gap: 15px; }
      .cookie-banner .cookie-inner .cookie-text {
        line-height: 1.1;
        font-size: 14px; }
    .cookie-banner .cookie-btn {
      align-self: flex-start;
      width: 100%;
      font-size: 1em; } }

@font-face {
  font-family: 'Lorrach';
  src: url("../fonts/Lorrach-Heavy.otf") format("opentype");
  font-weight: normal;
  font-style: normal; }
@font-face {
  font-family: 'Pronto';
  src: url("../fonts/Pronto-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal; }
@font-face {
  font-family: 'Pronto';
  src: url("../fonts/Pronto-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal; }
@font-face {
  font-family: 'Pronto';
  src: url("../fonts/Pronto-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal; }
@font-face {
  font-family: 'Pronto';
  src: url("../fonts/Pronto-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal; }
html, body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-smooth: always; }

a {
  text-decoration: none;
  color: inherit; }

body {
  font-family: 'Pronto', 'Lorrach', sans-serif;
  margin: 0;
  padding: 0;
  background: url("../img/bg.jpg") center center no-repeat;
  background-size: cover;
  height: 100vh;
  min-height: 1000px;
  color: #fdfdfd;
  letter-spacing: -0.12em;
  position: relative;
  -webkit-user-select: none;
  /* Safari */
  -moz-user-select: none;
  /* Firefox */
  -ms-user-select: none;
  /* Internet Explorer/Edge */
  user-select: none;
  /* Standard */ }

h1 {
  margin: 0;
  font-size: 5em;
  line-height: 0.8; }

h2 {
  margin: 0;
  font-size: 3em;
  line-height: 0.8; }

h3 {
  margin: 0;
  font-size: 2.4em;
  line-height: 0.8;
  color: #89d1f0; }

h4 {
  margin: 0;
  font-size: 1.8em;
  line-height: 1;
  letter-spacing: -0.05em; }

.en {
  font-family: 'Lorrach', sans-serif;
  direction: ltr;
  letter-spacing: -0.05em; }

.bg_elements {
  width: 100%;
  height: 100%;
  position: absolute;
  pointer-events: none;
  top: 0;
  left: 0;
  overflow: hidden; }

.mounts {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.8;
  pointer-events: none; }

.cow {
  position: absolute;
  bottom: 85px;
  width: 170px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none; }

.logo {
  position: absolute;
  top: 40px;
  left: 50%;
  margin-left: -80px;
  width: 160px;
  pointer-events: auto; }

.screen {
  position: absolute;
  top: 45%;
  left: 50%;
  box-sizing: border-box;
  max-width: 600px;
  padding: 36px;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  opacity: 0;
  pointer-events: none; }
  .screen.active {
    opacity: 1;
    pointer-events: auto; }

.greet_card {
  position: absolute;
  top: 45%;
  left: 50%;
  box-sizing: border-box;
  max-width: 600px;
  padding: 36px;
  transform: translate(-50%, -50%);
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px; }
  .greet_card h1 {
    font-size: 4em; }
  .greet_card video {
    border-radius: 10px;
    border: 3px solid #fdfdfd;
    box-sizing: border-box;
    max-width: 500px;
    width: 90%;
    min-width: 90%;
    background: url("../img/demo/bg.jpg") center center no-repeat;
    background-size: cover; }

.share-btns {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  margin-bottom: 40px; }
  .share-btns a {
    display: contents;
    text-decoration: none;
    color: inherit; }
  .share-btns .share-btn {
    background: #89d1f0;
    border-radius: 10px;
    padding: 15px 25px; }
    .share-btns .share-btn img {
      height: 35px; }

.consents {
  display: flex;
  flex-direction: column;
  text-align: right;
  letter-spacing: -0.06em;
  font-size: 0.85em; }

.buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 20px; }
  .buttons a {
    display: contents;
    text-decoration: none;
    color: inherit; }

.button {
  font-size: 2em;
  background: #89d1f0;
  border: 4px solid #fdfdfd;
  border-radius: 100px;
  color: #7b69ac;
  padding: 15px 35px;
  line-height: 1;
  cursor: pointer;
  transition: all 0.2s ease;
  letter-spacing: -0.05em; }
  .button:hover {
    border-color: #89d1f0;
    background-color: #fdfdfd; }
  .button.inactive {
    opacity: 0.7;
    filter: grayscale(100%);
    pointer-events: none; }

.characters {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%; }
  .characters .char {
    font-size: 2em;
    background: #89d1f0;
    border: 3px solid #fdfdfd;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    color: #7b69ac;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 100px;
    width: 100px;
    background: url(../img/demo/bg.jpg) 52% 37%;
    background-size: 400px auto; }
    .characters .char img {
      position: absolute;
      top: 2%;
      left: -20%;
      width: 140%;
      pointer-events: none; }
    .characters .char:hover {
      border-color: #89d1f0;
      background-color: #fdfdfd; }
  .characters.selected .char {
    opacity: 0.7;
    filter: grayscale(100%); }
    .characters.selected .char.active {
      opacity: 1;
      transform: scale(1.1);
      filter: grayscale(0%);
      border-color: #89d1f0;
      background-color: #fdfdfd; }

.genres {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%; }
  .genres .genre {
    width: 160px;
    height: 160px;
    background: #89d1f0;
    display: flex;
    border-radius: 10px;
    flex-direction: column;
    gap: 15px;
    border: 3px solid #fdfdfd;
    font-size: 2em;
    justify-content: center;
    align-items: center;
    color: #7b69ac;
    transition: all 0.2s ease;
    cursor: pointer;
    border-radius: 40px;
    line-height: 0.6; }
    .genres .genre.disabled {
      pointer-events: none;
      opacity: 0.5;
      filter: grayscale(100%); }
    .genres .genre img {
      height: 70px;
      opacity: .74;
      filter: hue-rotate(10deg); }
    .genres .genre strong {
      font-weight: 500;
      font-size: 1em;
      font-size: 0.6em;
      letter-spacing: -0.05em; }
    .genres .genre:hover {
      border-color: #89d1f0;
      background-color: #fdfdfd; }
  .genres.selected .genre {
    opacity: 0.7;
    filter: grayscale(100%); }
    .genres.selected .genre.active {
      opacity: 1;
      transform: scale(1.1);
      filter: grayscale(0%);
      border-color: #89d1f0;
      background-color: #fdfdfd; }

.inputs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  gap: 10px;
  width: 100%; }
  .inputs .col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    justify-content: space-between; }
  .inputs label {
    font-size: 1.5em;
    letter-spacing: -0.05em; }
  .inputs input {
    border: 3px solid #fdfdfd;
    appearance: none;
    border-radius: 70px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    line-height: 2;
    padding: 0 25px;
    box-sizing: border-box;
    font-size: 2em;
    width: 100%;
    color: #fdfdfd;
    font-family: 'Pronto', 'Lorrach', sans-serif; }

.uploader {
  text-align: center;
  color: #fdfdfd;
  display: flex;
  flex-direction: column; }

.uploader-title {
  font-weight: 700;
  margin-bottom: 10px; }

.uploader-card {
  width: 185px;
  height: 185px;
  margin: 0 auto 8px;
  background: #fdfdfd;
  margin-bottom: 0;
  border-radius: 24px;
  border: 3px solid #fdfdfd;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  transition: transform .15s ease, box-shadow .15s ease; }

.uploader-icon {
  width: 140px;
  height: 140px;
  opacity: 1; }

.uploader-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* fills the card nicely */
  display: block;
  border-radius: 24px; }
  .uploader-preview.hidden {
    display: none !important; }

.uploader-hint {
  font-size: .85rem;
  opacity: .9; }

.uploader-error {
  color: #fdfdfd;
  /* light red on purple bg */
  font-weight: 600;
  letter-spacing: -0.05em; }

.terms-bar {
  position: absolute;
  bottom: 0px;
  font-size: 1.2em;
  color: #7b69ac;
  background: #fdfdfd;
  box-sizing: border-box;
  padding: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  left: 0;
  gap: 20px; }
  .terms-bar .terms {
    color: #7b69ac;
    text-decoration: none;
    padding: 5px 40px;
    border: 2px solid #7b69ac;
    border-radius: 100px;
    letter-spacing: -0.05em; }
    .terms-bar .terms:hover {
      background: #7b69ac;
      color: #fdfdfd; }

@media only screen and (max-width: 800px) {
  body {
    display: flex;
    justify-content: flex-end;
    flex-direction: column-reverse;
    height: auto;
    min-height: 600px;
    padding-top: 110px;
    font-size: 13px; }

  .bg_elements {
    height: 200px;
    position: relative; }

  .logo {
    top: 30px;
    left: 50%;
    margin-left: -60px;
    width: 120px; }

  .mounts {
    width: 600px; }

  .cow {
    width: 140px;
    bottom: 30px; }

  .screen {
    position: static;
    left: 0;
    transform: none;
    top: 100px;
    padding: 18px;
    width: 100%; }

  .characters .char {
    height: 90px;
    width: 90px; }

  .genres .genre {
    width: 90%;
    height: auto;
    padding: 20px; }
    .genres .genre img {
      display: none; }
  .genres.selected .genre.active {
    transform: scale(1); }

  .greet_card {
    position: static;
    left: 0;
    transform: none;
    top: 100px;
    padding: 15px;
    width: 100%; }
    .greet_card h1 {
      font-size: 3em; }

  h1 {
    font-size: 3.7em; }

  .loading-bar {
    width: 300px; }

  .inputs {
    flex-direction: column; }
    .inputs .uploader-card {
      width: 140px;
      height: 140px; }

  .consents {
    font-size: 1.2em; }

  .screen_5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 400px; } }

/*# sourceMappingURL=style.css.map */
