:root {
  --color-background: #000;
  --color-font: #fff;
  --color-alert: red;
  --color-accent: #d74565;
  --color-accent-hover: orange;
  --color-button-bg: #d74565;
  --color-button-bg-hover: #f16f8b;
  --border-button: 1px solid #fff;
  --color-button-font-hover: #fff;
  --border-button-hover: 1px solid #ffacbe;
  --border-radius-button: .5rem;
  --padding: 2rem;
  --border-radius: 2rem;
  --border-radius-input: .5rem;
  --font-headline: 'Source Serif 4', serif;
  --font-body: 'Inter';
  --font-button: 'Source Serif 4', serif;
}

body, html {
  background-color: var(--color-background);
  color: var(--color-font);
  margin: 0px;
  padding: 0px;
  font-size: 15px;
}
@media all and (max-width: 768px) {
  body, html {
    font-size: 13px;
  }
}
body, html {
  line-height: 140%;
  font-weight: 300;
  background-size: cover;
  background-position: center;
  height: 100vh;
  font-family: var(--font-body);
  overflow: hidden;
}

* {
  box-sizing: border-box;
}

p.meta {
  font-size: 0.85rem;
}

h1, h2, h3, h4, h5, p {
  margin: 0px;
  padding: 0px;
  line-height: 140%;
  font-weight: 300;
}
h1.centered, h2.centered, h3.centered, h4.centered, h5.centered, p.centered {
  text-align: center;
}

h1, h2, h3 {
  font-family: var(--font-headline);
  line-height: 110%;
}

h1, h4 {
  text-transform: uppercase;
}

h1, h2, h3, h4, h5 {
  font-weight: 600;
}

h1 {
  font-size: 4rem;
  line-height: 90%;
}

h2 {
  font-size: 2.25rem;
}

h3 {
  font-size: 1.5rem;
}

h4 {
  font-size: 1rem;
}

input {
  font-size: 1rem;
}

strong {
  font-weight: 700;
}

a {
  color: var(--color-font);
  text-decoration: underline;
  cursor: pointer;
  transition: 0.25s;
}
a:hover {
  color: var(--color-accent);
}

.frosted {
  backdrop-filter: blur(1.5rem);
  border-radius: var(--border-radius);
  box-shadow: 0px 1rem 1rem rgba(0, 0, 0, 0.05), 0px 0px 1rem rgba(255, 255, 255, 0.1) inset;
  corner-shape: squircle;
}
.frosted.black {
  background-color: rgba(0, 0, 0, 0.8);
}
.frosted.pink {
  background-color: #DC5663;
}
.frosted.additional {
  padding: calc(var(--padding) * 0.5);
  gap: calc(var(--padding) * 0.5);
  display: flex;
  flex-direction: column;
}

button, .button {
  background: transparent;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
  border: none;
  text-decoration: none;
  color: var(--color-font);
}
button:not(.secondary), .button:not(.secondary) {
  background-color: var(--color-button-bg);
  border: var(--border-button);
  transition: 0.5s;
  padding: calc(var(--padding) * 0.5) calc(var(--padding) * 0.75);
  line-height: 100%;
  font-weight: 600;
  display: block;
  font-family: var(--font-button);
  text-transform: uppercase;
  border-radius: var(--border-radius-button);
}
button:not(.secondary):hover, .button:not(.secondary):hover {
  background-color: var(--color-button-bg-hover);
  border: var(--border-button-hover);
  color: var(--color-button-font-hover);
}

.lp-logo {
  display: block;
  width: 100px;
  padding-top: var(--padding);
}

.deals {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: calc(var(--padding) * 0.5);
  align-items: stretch;
  flex-direction: row;
}
@media all and (max-width: 768px) {
  .deals {
    flex-direction: column;
  }
}
.deals .deal {
  padding: calc(var(--padding) * 0.5);
  gap: calc(var(--padding) * 0.25);
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.deals .deal p.meta {
  opacity: 0.75;
}

.seperator {
  height: 0.1em;
  background-color: rgba(255, 255, 255, 0.33);
  width: 50%;
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
  max-width: 400px;
}

.form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: calc(var(--padding) * 0.5);
}
.form .input {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: left;
  gap: calc(var(--padding) * 0.25);
  width: 100%;
  flex-grow: 1;
  min-width: 300px;
}
.form .input.flex-row {
  flex-direction: row;
  gap: calc(var(--padding) * 1);
}
.form .input:has(input[type=checkbox]) {
  flex-direction: row-reverse;
}
.form .input:has(input[type=checkbox]) label {
  flex-grow: 1;
}
.form .input:has([data-invalid=true]) input[type=text], .form .input:has([data-invalid=true]) input[type=email] {
  border-left-color: var(--color-alert);
}
.form .input:has(button) {
  align-items: center;
}
.form .input.w-50 {
  width: 45%;
}
.form .input .group {
  display: flex;
  gap: calc(var(--padding) * 0.5);
  flex-direction: column;
  padding: calc(var(--padding) * 0.5);
  font-size: 1rem;
  border-left: 4px solid var(--color-font);
  background-color: rgb(255, 255, 255);
  color: #000;
  width: 100%;
  border-radius: var(--border-radius-input);
  max-height: 300px;
  overflow-y: auto;
}
.form .input .group .group-item {
  display: flex;
  gap: calc(var(--padding) * 0.25);
  align-items: center;
}
.form .input.checkbox_group {
  flex-direction: column !important;
}
.form label {
  display: block;
}
.form input[type=text], .form input[type=email] {
  display: block;
  border: none;
  line-height: 100%;
  font-family: sans-serif;
  padding: calc(var(--padding) * 0.5);
  font-size: 1rem;
  border-left: 4px solid var(--color-font);
  background-color: rgb(255, 255, 255);
  color: #000;
  width: 100%;
  border-radius: var(--border-radius-input);
}
.form select {
  display: block;
  border: none;
  line-height: 100%;
  font-family: sans-serif;
  padding: calc(var(--padding) * 0.5);
  font-size: 1rem;
  border-left: 4px solid var(--color-font);
  background-color: rgb(255, 255, 255);
  color: #000;
  width: 100%;
  border-radius: var(--border-radius-input);
}

.progress-bar {
  width: 80%;
  background-color: var(--color-background);
  height: 0.75rem;
  border-radius: 0px 0px var(--border-radius-input) var(--border-radius-input);
  overflow: visible;
  top: calc(var(--padding) * -0.5);
  left: 10%;
  position: sticky;
  margin-top: calc(var(--padding) * -1);
}
.progress-bar:after {
  background-color: rgba(255, 255, 255, 0.75);
  position: absolute;
  top: 0px;
  left: 0px;
  width: var(--progress);
  content: "";
  height: 100%;
  border-radius: 0px 0px var(--border-radius-input) var(--border-radius-input);
  z-index: 1;
}
.progress-bar:before {
  background-color: var(--color-accent);
  position: absolute;
  top: 50%;
  left: var(--progress);
  content: "";
  transform: translate(-50%, -50%);
  height: 200%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  z-index: 2;
  box-shadow: 0px 0px 0.5rem rgba(0, 0, 0, 0.4);
}

.frame {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  display: flex;
  visibility: hidden;
  opacity: 0;
  flex-direction: column;
  justify-content: flex-start;
}
@media all and (min-width: 768px) {
  .frame {
    flex-direction: row;
    justify-content: center;
  }
}
.frame {
  align-items: center;
  gap: calc(var(--padding) * 0.5);
  background-size: cover;
  background-position: center;
  transition: all 0s, background-image 0.5s, opacity 0.5s;
  overflow-y: auto;
  padding: calc(var(--padding) * 0.5);
  pointer-events: none;
}
.frame.justify-top {
  justify-content: flex-start;
}
.frame .inner {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: calc(var(--padding) * 0.5);
  padding: var(--padding);
  max-width: 380px;
  align-items: center;
  transform: translate(0px, 100px);
  transition: 1s;
  opacity: 0;
}
.frame .inner.wide {
  max-width: 800px;
}
.frame .inner.fullwidth {
  max-width: 100%;
}
@media all and (min-width: 768px) {
  .frame .inner {
    flex-grow: 1;
  }
}
@media all and (max-width: 768px) {
  .frame .inner {
    justify-content: flex-start;
  }
}
.frame[data-active=true] {
  pointer-events: all;
  visibility: visible;
  opacity: 1;
}
.frame[data-active=true] .inner {
  transform: translate(0px, 0px);
  opacity: 1;
}
.frame .promo-logo {
  padding: var(--padding);
  width: 100%;
}
@media all and (min-width: 768px) {
  .frame .promo-logo {
    position: absolute;
    top: 0px;
    right: 0px;
    width: 300px;
  }
  .frame .promo-logo.small {
    width: 200px;
  }
}
.frame .promo-logo img {
  display: block;
  width: 60%;
  margin-left: auto;
  margin-right: auto;
}
@media all and (min-width: 768px) {
  .frame .promo-logo img {
    width: 100%;
  }
}

h1, h2, h3, h4, h5, p {
  text-shadow: 0px 0px 1rem rgba(0, 0, 0, 0.1);
}

button, .button {
  font-size: 1.3rem;
}

.frame#home {
  padding: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  background-image: url(../img/bg-home.webp);
}
@media all and (max-width: 768px) {
  .frame#home {
    justify-content: space-between;
  }
}
.frame#home .inner {
  align-items: flex-start;
  max-width: 530px;
}
@media all and (max-width: 768px) {
  .frame#home .inner {
    max-width: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 6rem);
  }
}
.frame#home .promo-logo {
  opacity: 0;
  transition: 1s;
}
.frame#home[data-active=true] .promo-logo {
  opacity: 1;
}
.frame#enter, .frame#signup {
  background-image: url(../img/bg-home-reveal.webp);
}
@media all and (max-width: 768px) {
  .frame#enter, .frame#signup {
    justify-content: space-between;
  }
}
.frame#reveal, .frame#alreadyentered {
  background-image: url(../img/bg-complete.webp);
}

strong.promocode {
  background-color: #fff;
  border-radius: var(--border-radius-button);
  color: var(--color-accent);
  font-family: var(--font-headline);
  line-height: 1em;
  font-size: 2.5rem;
  padding: 0.4em 0.5em;
  font-weight: 500;
  margin-top: calc(var(--padding) * 0.25);
  margin-bottom: calc(var(--padding) * 0.25);
  display: block;
  margin-left: calc(var(--padding) * -1);
  margin-right: calc(var(--padding) * -1);
  text-transform: uppercase;
}

p:has(.promocode) {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 300px;
  padding: calc(var(--padding) * 0.5);
  border-radius: var(--border-radius);
  corner-shape: squircle;
  backdrop-filter: blur(1.5rem);
}

.spray-animate {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  pointer-events: none;
}
.spray-animate .spray {
  --time: 1.75s;
  --delay: 0s;
  --rotate: 45deg;
  position: absolute;
  top: 33%;
}
@media all and (max-width: 768px) {
  .spray-animate .spray {
    top: 33%;
  }
}
.spray-animate .spray {
  left: 50%;
  width: 100%;
  height: 100%;
  background-image: url(../img/spray.png);
  background-size: contain;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%) scale(0) rotate(0deg);
  background-position: center;
  animation: spray var(--time) var(--delay) forwards;
  opacity: 0;
}

@keyframes spray {
  0% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(0) rotate(0deg);
    animation-timing-function: ease-in;
  }
  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) scale(1) rotate(calc(var(--rotate) * 0.5));
    animation-timing-function: ease-out;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(3) rotate(var(--rotate));
    animation-timing-function: ease-out;
  }
}/*# sourceMappingURL=main.v1.css.map */