* {
  margin: 0;
  padding: 0;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  font-family: "Hedvig Letters Serif", serif;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
}
body.locked {
  overflow: hidden;
}

::-webkit-scrollbar {
  width: 5px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: #171717;
}

::-webkit-scrollbar-thumb:hover {
  background: #4a4a4a;
}

#cpra_button {
  display: none !important;
}

.splash-preloader {
  background: #171717;
  position: fixed;
  top: 0;
  left: 0;
  height: calc(var(--vh, 1vh) * 100);
  width: 100%;
  z-index: 100;
}

header.splash-header {
  position: relative;
  width: 100%;
  z-index: 10;
}
header.splash-header .header-white,
header.splash-header .header-black {
  position: fixed;
  padding: 2rem;
  width: 100%;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
header.splash-header .header-white .header-left a,
header.splash-header .header-black .header-left a {
  font-size: 1.2rem;
  padding-right: 0.5rem;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
header.splash-header .header-white .header-left a:hover,
header.splash-header .header-black .header-left a:hover {
  opacity: 0.71;
}
header.splash-header .header-white .header-right a,
header.splash-header .header-black .header-right a {
  font-size: 1.2rem;
  text-decoration: none;
}
header.splash-header .header-white .header-right a i,
header.splash-header .header-black .header-right a i {
  font-size: 1rem;
  padding-left: 0.5rem;
}
header.splash-header .header-white .header-right a span,
header.splash-header .header-black .header-right a span {
  position: relative;
}
header.splash-header .header-white .header-right a span:before,
header.splash-header .header-black .header-right a span:before {
  content: "";
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 0%;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
header.splash-header .header-white .header-right a:hover span:before,
header.splash-header .header-black .header-right a:hover span:before {
  width: 100%;
}
@media (max-width: 600px) {
  header.splash-header .header-white,
  header.splash-header .header-black {
    padding: 1rem;
  }
  header.splash-header .header-white .header-left a,
  header.splash-header .header-black .header-left a {
    font-size: 1rem;
    padding-right: 0.25rem;
  }
  header.splash-header .header-white .header-right a,
  header.splash-header .header-black .header-right a {
    font-size: 1rem;
  }
}
header.splash-header .header-white a {
  color: #f6f6f6;
}
header.splash-header .header-white .header-right a span:before {
  background: rgba(246, 246, 246, 0.71);
}
header.splash-header .header-black a {
  color: #171717;
}
header.splash-header .header-black .header-right a span:before {
  background: rgba(23, 23, 23, 0.71);
}

.section-one {
  background-image: url(../img/black-bg.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100dvh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-one .inner {
  margin: 0 auto;
  min-height: calc(var(--vh, 1vh) * 100);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.section-one .inner img {
  display: block;
  height: auto;
  margin: 0 auto;
  max-width: 550px;
  width: 71%;
}
.section-one .inner .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: var(--ltp);
  width: 100%;
}
.section-one .inner .row .countdown-one {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  padding-top: var(--cdp);
  width: calc((100vw - 450px) / 2);
}
@media (max-width: 1000px) {
  .section-one .inner .row .countdown-one {
    padding-top: 0;
  }
}
.section-one .inner .row .logo-one {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  max-width: 400px;
  padding: 0 1rem;
}
.section-one .inner .row .countdown-two {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding-top: var(--cdp);
  width: calc((100vw - 450px) / 2);
}
@media (max-width: 1000px) {
  .section-one .inner .row .countdown-two {
    padding-top: 0;
    padding-bottom: 1rem;
  }
}
@media (max-width: 1000px) {
  .section-one .inner .row {
    margin-top: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .section-one .inner .row .logo-one {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    max-width: 550px;
    width: 100%;
  }
  .section-one .inner .row .countdown-one {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .section-one .inner .row .countdown-two {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 100%;
  }
}
.section-one .inner .splash-sign-up-form {
  padding-top: 1rem;
}
@media (max-width: 1000px) {
  .section-one .inner .splash-sign-up-form {
    padding-top: 0;
  }
}
.section-one .inner .countdown {
  color: #f6f6f6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-item: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  width: 100%;
  max-width: 350px;
}
.section-one .inner .countdown .seg {
  text-align: center;
  width: 20%;
}
.section-one .inner .countdown .seg span {
  font-size: clamp(24px, 12vw, 100px);
  font-size: clamp(14px, 4vw, 36px);
}
.section-one .inner .countdown .seg p {
  font-size: 1rem;
}
@media (max-width: 1200px) {
  .section-one .inner .countdown .seg p {
    font-size: 0.8rem;
  }
}
.section-one .inner .countdown .seg p:nth-of-type(2) {
  opacity: 0;
}
.section-one .inner .countdown .divider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 6.66%;
  font-size: clamp(24px, 12vw, 100px);
  font-size: clamp(14px, 4vw, 36px);
}
.section-one .inner .splash-sign-up {
  margin: 0 auto;
  max-width: 600px;
  width: 90%;
}
.section-one .inner .countdown-one {
  padding: 0 1rem;
}
.section-one .inner .countdown-two {
  padding: 0 1rem;
}
.section-one .inner .splash-sign-up {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
@media (max-width: 1000px) {
  .section-one .inner {
    padding-top: calc(var(--hh) + 2rem);
  }
  .section-one .inner .logo-one {
    max-width: 300px !important;
    margin-bottom: 1rem;
  }
  .section-one .inner .countdown-one,
  .section-one .inner .countdown-two {
    padding: 0;
    margin: 0 auto;
    max-width: 300px;
    width: 100vw;
  }
  .section-one .inner .countdown-one .seg span,
  .section-one .inner .countdown-one .divider,
  .section-one .inner .countdown-two .seg span,
  .section-one .inner .countdown-two .divider {
    font-size: clamp(14px, 4vw, 36px);
  }
  .section-one .inner .countdown-one .seg p:nth-of-type(2),
  .section-one .inner .countdown-two .seg p:nth-of-type(2) {
    display: none;
  }
  .section-one .inner .countdown-two {
    margin-top: 1rem;
  }
  .section-one .inner .splash-sign-up {
    max-width: 500px;
    min-height: 0;
  }
}
@media (max-width: 600px) {
  .section-one .inner .countdown-one .seg span,
  .section-one .inner .countdown-one .divider,
  .section-one .inner .countdown-two .seg span,
  .section-one .inner .countdown-two .divider {
    font-size: clamp(18px, 10vw, 72px);
  }
}

.section-two {
  background-image: url(../img/white-bg.jpg);
  background-attachment: fixed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100dvh;
  width: 100%;
}
.section-two .inner {
  margin: 0 auto;
  width: calc(100% - 2rem);
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-height: calc(var(--vh, 1vh) * 100);
}
.section-two .inner .guess {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: calc(var(--hh) + 1rem) 0 calc((var(--hh) + 2rem) / 2);
  width: 90%;
}
.section-two .inner .guess h2 {
  color: rgba(23, 23, 23, 0.9);
  font-size: 3rem;
  font-weight: normal;
  margin: 0 auto;
  text-align: center;
}
@media (max-width: 700px) {
  .section-two .inner .guess h2 {
    font-size: 2.4rem;
  }
}
.section-two .inner .guess .input-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.section-two .inner .guess .input-form .input-wrap {
  position: relative;
  width: 68%;
}
.section-two .inner .guess .input-form .input-wrap.correct:before {
  content: "\f00c";
  color: green;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(16px, 1.2vw, 36px);
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.section-two .inner .guess .input-form .input-wrap.correct #guess-input {
  border: 2px solid green;
  background: rgba(0, 128, 0, 0.2);
}
.section-two .inner .guess .input-form .input-wrap.wrong:before {
  content: "\f00d";
  color: red;
  font-family: "Font Awesome 6 Free";
  font-size: clamp(16px, 1.2vw, 36px);
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.section-two .inner .guess .input-form .input-wrap.wrong #guess-input {
  border: 2px solid red;
  background: rgba(255, 0, 0, 0.2);
}
.section-two .inner .guess .input-form #guess-input {
  -webkit-appearance: none;
  background: white;
  border-radius: 5px;
  border: 2px solid #171717;
  width: 100%;
  color: #171717;
  padding: 0.5rem 1rem;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(16px, 1.2vw, 36px);
  line-height: 1.71;
  outline: none;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  position: relative;
}
.section-two .inner .guess .input-form #guess-submit {
  -webkit-appearance: none;
  width: 30%;
  background: #171717;
  border-radius: 5px;
  border: 2px solid #171717;
  color: #f6f6f6;
  padding: 0.5rem;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(16px, 1.2vw, 36px);
  line-height: 1.71;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
  cursor: pointer;
}
.section-two .inner .guess .input-form #guess-submit:hover {
  background: #f6f6f6;
  color: #171717;
}
.section-two .inner .tracks {
  padding: 2rem 0 4rem;
}
.section-two .inner .tracks .track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 1.5rem;
}
.section-two .inner .tracks .track span {
  display: inline-block;
  color: #171717;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: clamp(14px, 1.5vw, 32px);
  font-weight: 900;
  line-height: 1;
  text-align: right;
  padding-right: 0.5rem;
  width: 10%;
}
.section-two .inner .tracks .track .input-wrap {
  position: relative;
  width: 90%;
}
.section-two .inner .tracks .track .input-wrap.correct {
  pointer-events: none;
}
.section-two .inner .tracks .track .input-wrap.correct:before {
  content: "\f00c";
  color: #171717;
  font-family: "Font Awesome 5 Free";
  font-size: clamp(16px, 1.2vw, 36px);
  font-weight: 900;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  aspect-ratio: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  pointer-events: none;
  z-index: 10;
}
.section-two .inner .tracks .track .input-wrap.correct input {
  color: black;
  font-weight: 800;
}
.section-two .inner .tracks .track .input-wrap.wrong input {
  background: rgba(255, 0, 0, 0.1);
  border-bottom: 3px solid red;
}
.section-two .inner .tracks .track input {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
  border: none;
  background: none;
  border-bottom: 3px solid #171717;
  display: inline-block;
  font-family: "Hedvig Letters Serif", serif;
  font-size: clamp(18px, 2.4vw, 28px);
  padding: 0 0.15rem;
  width: 100%;
  -webkit-transition: border-bottom 250ms ease-in-out;
  transition: border-bottom 250ms ease-in-out;
}
.section-two .inner .tracks .track input.correct {
  border-bottom: 3px solid #171717;
}
.section-two .inner .tracks .track input.locked {
  opacity: 1;
  pointer-events: none;
}
.section-two .inner .tracks .track input.wrong {
  background: rgba(255, 0, 0, 0.1);
  border-bottom: 3px solid red;
}
.section-two .inner .tracks .track input::-webkit-input-placeholder {
  color: rgba(23, 23, 23, 0.38);
}
.section-two .inner .tracks .track input::-moz-placeholder {
  color: rgba(23, 23, 23, 0.38);
}
.section-two .inner .tracks .track input:-ms-input-placeholder {
  color: rgba(23, 23, 23, 0.38);
}
.section-two .inner .tracks .track input::-ms-input-placeholder {
  color: rgba(23, 23, 23, 0.38);
}
.section-two .inner .tracks .track input::placeholder {
  color: rgba(23, 23, 23, 0.38);
}
.section-two .inner footer.splash-footer {
  padding: 1rem 1rem 2rem;
  font-size: 11px;
  text-align: center;
  color: #171717;
}
.section-two .inner footer.splash-footer a {
  color: #171717;
  white-space: nowrap;
  text-decoration: none;
}

.payoff {
  display: none;
  padding: 2rem;
}
.payoff .audio-player {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  max-width: 400px;
  margin: 0 auto;
  width: 100%;
}
.payoff .audio-player .audio-player-left a {
  border: 2px solid #171717;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  height: 50px;
  width: 50px;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.payoff .audio-player .audio-player-left a i {
  color: #171717;
  font-size: 1rem;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.payoff .audio-player .audio-player-left a i:nth-of-type(1) {
  position: relative;
  left: 1px;
}
.payoff .audio-player .audio-player-left a i:nth-of-type(2) {
  display: none;
}
.payoff .audio-player .audio-player-left a:hover {
  background: #171717;
}
.payoff .audio-player .audio-player-left a:hover i {
  color: #f6f6f6;
}
.payoff .audio-player .audio-player-left a.playing i:nth-of-type(1) {
  display: none;
}
.payoff .audio-player .audio-player-left a.playing i:nth-of-type(2) {
  display: block;
}
.payoff .audio-player .audio-player-right {
  padding-left: 1rem;
  width: calc(100% - 50px);
}
.payoff .audio-player .audio-player-right span.track-name {
  line-height: 2;
}
.payoff .audio-player .audio-player-right .progress {
  background: rgba(23, 23, 23, 0.5);
  height: 5px;
  width: 100%;
  position: relative;
}
.payoff .audio-player .audio-player-right .progress-bar {
  background: #171717;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
}
.payoff .audio-player .audio-player-right span.track-times {
  line-height: 2;
}

.more {
  width: 100%;
  padding: 0.5rem;
  text-align: center;
}
.more a {
  color: #f6f6f6;
  text-decoration: none;
  font-size: 12px;
  line-height: 1;
  -webkit-transition: 250ms ease-in-out;
  transition: 250ms ease-in-out;
}
.more a:hover {
  color: rgba(246, 246, 246, 0.71);
}