@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&family=VT323&display=swap");
body {
  box-sizing: border-box;
  margin: 0;
  font-weight: 400;
  font-style: normal;
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #ffb71a;
  background-image: url(../img/desktop_final.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  height: 204vw;
  position: relative;
}

html {
  scroll-behavior: smooth;
}

p {
  color: white;
  font-size: 1.22vw;
  line-height: 1.5;
  margin: 0;
}

.second__color {
  color: #512DA8 !important;
}

.first__p {
  font-weight: 400;
  text-align: center;
  font-size: 2.45vw;
  text-shadow: 0px 3px 7px black;
}
.first__p b {
  font-weight: 900;
}

.first__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 33.5vw;
}

.button__start {
  width: 49vw;
  padding: 1.2vw 0;
  font-size: 2vw;
  outline: none;
  border: none;
  color: black;
  background: linear-gradient(90deg, #F09819 0, #EDDE5D 100%);
  text-decoration: none;
  text-align: center;
  font-family: "Plus Jakarta Sans", sans-serif;
  text-transform: uppercase;
  font-weight: 900;
  margin-top: 3vw;
  position: relative;
  border: 5px solid #000;
  cursor: pointer;
}

.button__start::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 5px solid #000; /* drugi border */
  transform: translate(3px, 3px); /* offset = widoczny tylko dół/prawo */
  z-index: -1;
  height: calc(100% - 6px);
  width: calc(100% - 6px);
}

strong {
  font-weight: 900;
}

h3 {
  margin: 0;
  color: white;
  font-weight: 700;
  font-size: 2.96vw;
  font-family: "Plus Jakarta Sans", sans-serif;
}

h3, p, label, a {
  font-family: "Plus Jakarta Sans", sans-serif;
}

:root {
  /* baza w vw */
  --u: 1vw;
  /* wymiary paska */
  --h: calc(7.6 * var(--u));
  --border: calc(0.28 * var(--u));
  --padX: calc(1 * var(--u));
  /* typografia */
  --font: calc(3.7 * var(--u));
  --gap: calc(1.5 * var(--u)); /* odstęp między elementami */
  --diamond: calc(1.1 * var(--u));
  /* animacja */
  --duration: 18s; /* JS nadpisze */
}

.enzzi-strip {
  height: var(--h);
  width: 100%;
  overflow: hidden;
  position: relative;
  box-sizing: border-box;
  margin-top: 36.8vw;
  background: #1E1E1E;
}

/* viewport do animacji */
.enzzi-strip__viewport {
  height: 100%;
  display: flex;
  align-items: center;
}

.enzzi-strip__track {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  will-change: transform;
  animation: enzzi-marquee var(--duration) linear infinite;
}

/* pauza na hover (opcjonalnie) */
.enzzi-strip:hover .enzzi-strip__track {
  animation-play-state: paused;
}

@keyframes enzzi-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(var(--shift));
  } /* JS ustawia --shift na ujemną wartość */
}
.enzzi-strip__chunk {
  display: inline-flex;
  align-items: center;
  padding-left: var(--padX);
  padding-right: var(--padX);
  gap: var(--gap);
  font-family: "VT323", monospace;
  font-size: var(--font);
  line-height: 1;
  letter-spacing: calc(0.08 * var(--u));
  color: white;
  text-transform: uppercase;
  /* “pixelowa” ostrość */
  -webkit-font-smoothing: none;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: geometricPrecision;
}

.diamond {
  width: var(--diamond);
  height: var(--diamond);
  background: white;
  display: inline-block;
  transform: rotate(45deg);
  flex: 0 0 auto;
}

/* preferencje ruchu */
@media (prefers-reduced-motion: reduce) {
  .enzzi-strip__track {
    animation: none;
  }
}
.form__section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 30vw;
  padding: 5vw 0;
  width: 100%;
  margin: auto;
  position: relative;
  height: 57.5vw;
}
.form__section .form__content {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 45%;
  width: 75%;
  border: 8px solid #000;
  background-color: #D9D9D9;
  margin-top: 18.5vw;
  z-index: 0;
  isolation: isolate;
}
.form__section .form__content::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 0;
  border-right: 8px solid #000;
  border-bottom: 8px solid #000; /* drugi border */
  transform: translate(5px, 5px); /* offset = widoczny tylko dół/prawo */
  z-index: -1;
  height: calc(100% - 5px);
  width: calc(100% - 5px);
}
.form__section .first__form__p {
  font-size: 2.48vw;
  line-height: 1.1;
  color: black;
}
.form__section h3 {
  text-align: center;
  font-family: "VT323", monospace;
  color: black;
  font-size: 6.5vw;
  font-weight: 500;
}
.form__section #formularz {
  width: 85%;
  display: flex;
  color: black;
  justify-content: space-between;
  align-items: center;
}
.form__section input:not([type=checkbox]), .form__section textarea {
  resize: none;
  outline: none;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2vw;
  background-color: white;
  color: black;
  border: 5px solid black;
}
.form__section input::-moz-placeholder, .form__section textarea::-moz-placeholder {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2vw;
  color: black;
}
.form__section input::placeholder, .form__section textarea::placeholder {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 2vw;
  color: black;
}
.form__section input:not([type=checkbox]) {
  width: 70%;
  padding: 1.8vw 1vw;
  margin: 0;
  outline: none;
}
.form__section input[type=checkbox] {
  display: none;
}
.form__section input[type=checkbox] + label {
  cursor: pointer;
  display: inline-block;
  background-position-x: left !important;
  background-image: url(../img/chackbox.png);
  background-repeat: no-repeat;
  background-size: 1.3vw;
  padding-left: 5%;
}
.form__section .consent__box {
  display: flex;
  align-items: center;
  margin-bottom: 1vw;
  width: 73.2%;
}
.form__section .consent__box * {
  color: black;
  font-size: 1.2vw !important;
}
.form__section .zero__consent__box {
  margin-top: 2vw;
}
.form__section input[type=checkbox]:checked + label {
  background-image: url(../img/chackbox_ok.png) !important;
}
.form__section .checkbox_error {
  background-image: url(../img/chackbox_bad.png) !important;
}
.form__section input:-webkit-autofill.show-error,
.form__section input:-webkit-autofill:hover.show-error,
.form__section input:-webkit-autofill:focus.show-error,
.form__section input:-webkit-autofill:active.show-error,
.form__section .show-error {
  background-color: #ff0033 !important;
  color: white !important;
}
.form__section .show-error::-moz-placeholder {
  color: white !important;
}
.form__section .show-error::placeholder {
  color: white !important;
}
.form__section .rules_checkbox {
  margin: 0;
}
.form__section .send_button {
  width: 24%;
  margin-top: 0;
}
.form__section .rules_labels, .form__section a {
  line-height: 1.1;
}
.form__section .standard__p {
  color: white;
  width: 100%;
  font-weight: 700;
  font-size: 0.83vw;
}
.form__section h4 {
  color: white;
  font-size: 1.5vw;
  margin-top: 2.8vw;
  margin-bottom: 0.4vw;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.second__bg {
  background-image: url(../img/secondbg.png);
  background-size: cover;
}
.second__bg .form__content {
  height: 90%;
  margin-top: 0;
}
.second__bg .form__content .send_button {
  margin-top: 4vw;
  width: 50%;
}
.second__bg #formularz {
  flex-direction: column;
}
.second__bg #formularz input:not([type=checkbox]) {
  margin-bottom: 0.5vw;
}
.second__bg .additional__info, .second__bg .rules_labels {
  color: black;
}
.second__bg .additional__info {
  margin-top: 0.5vw;
  font-size: 1.22vw;
}

.third__bg {
  background-size: cover;
  background-repeat: no-repeat;
  background-color: #191228;
  background-image: url(../img/thirdbg.jpg);
}
.third__bg .form__content {
  height: 65%;
  margin-top: 0;
}
.third__bg img {
  width: 30%;
}
.third__bg .send_button {
  width: 70%;
}

.ad__section {
  margin-top: 18.2vw;
  margin-left: 39.8vw;
}
.ad__section h3 {
  font-family: "VT323", monospace;
  color: black;
  font-size: 4.4vw;
  font-weight: 300;
}
.ad__section p {
  margin-top: 1.3vw;
  color: black;
  font-size: 1.65vw;
  line-height: 1.2;
}

.congrats__img {
  margin-top: 20vw;
}

.congrats__desktop {
  width: 75vw;
  margin-bottom: 7vw;
}

.congrats__mobile {
  display: none;
}

footer {
  margin-top: 19vw;
  padding-left: 5.3vw;
  padding-top: 2vw;
  background-color: black;
}
footer h3 {
  font-family: "VT323", monospace;
  font-size: 2.4vw;
  font-weight: 700;
}
footer .links__box {
  margin-top: 3.9vw;
}
footer .links__box a {
  font-size: 1.25vw;
  color: white;
  margin-right: 6.25vw;
}

@media (max-width: 768px) {
  .congrats__mobile {
    display: flex;
    width: 75vw;
    margin-bottom: 10vw;
  }
  .congrats__desktop {
    display: none;
  }
  body {
    background-image: url(../img/mobile_final.jpg);
    height: 777vw;
    background-size: cover;
  }
  .button__start {
    margin-top: 16.9vw;
    width: 65vw;
    padding: 3.9vw 0;
    font-size: 4.5vw;
  }
  .first__section {
    margin-top: 80vw;
  }
  .first__p {
    font-size: 6.4vw;
    width: 86%;
  }
  .enzzi-strip {
    margin-top: 81.5vw;
    height: 15.8vw;
  }
  .enzzi-strip__chunk {
    font-size: 6.9vw;
  }
  .form__section {
    margin-top: 0;
    width: 100%;
    height: 244vw;
  }
  .form__section .form__content {
    margin-top: 53.3vw;
    height: 55%;
    width: 90%;
  }
  .form__section #formularz {
    width: 90%;
    margin-bottom: 8vw;
    flex-direction: column;
  }
  .form__section .send_button {
    width: 80%;
  }
  .form__section h3 {
    font-size: 12.8vw;
    width: 80%;
  }
  .form__section .first__form__p {
    line-height: 1.5;
    font-size: 6.4vw;
    text-align: center;
  }
  .form__section input:not([type=checkbox]) {
    width: 92%;
    padding: 8% 5%;
    margin-bottom: 12.3vw;
  }
  .form__section input::-moz-placeholder, .form__section textarea::-moz-placeholder {
    font-size: 4.4vw;
  }
  .form__section input:not([type=checkbox]), .form__section textarea,
  .form__section input::placeholder, .form__section textarea::placeholder {
    font-size: 4.4vw;
  }
  .form__section input[type=checkbox] + label {
    background-size: 4.5vw;
    padding-left: 9.5%;
    font-size: 4.7vw;
    height: auto;
    margin-top: 1.8vw;
  }
  .form__section a, .form__section p {
    font-size: 2.9vw;
  }
  .second__bg {
    background-size: contain;
    background-repeat: no-repeat;
    background-color: #191228;
  }
  .second__bg h3 {
    margin: 2vw 0;
  }
  .second__bg .first__form__p {
    margin-bottom: 2vw;
  }
  .second__bg .form__content {
    height: 85%;
    margin-top: 30vw;
  }
  .second__bg .form__content .send_button {
    margin-top: 8vw;
    width: 80%;
  }
  .second__bg .form__content .additional__info {
    font-size: 3.9vw;
    text-align: center;
    margin: 2vw 0;
  }
  .second__bg .form__content #formularz input:not([type=checkbox]) {
    margin-bottom: 1.5vw;
  }
  .second__bg .form__content .consent__box {
    width: 95%;
  }
  .second__bg .form__content .consent__box * {
    font-size: 4.7vw !important;
  }
  .third__bg {
    background-size: 200%;
    background-repeat: no-repeat;
    background-color: #191228;
  }
  .third__bg img {
    width: 60%;
  }
  .ad__section {
    margin-top: 85.9vw;
    margin-left: 0;
    text-align: center;
  }
  .ad__section h3 {
    font-size: 6.4vw;
  }
  .ad__section p {
    margin-top: 97.3vw;
    font-size: 4.25vw;
    line-height: 1.25;
  }
  footer {
    margin-top: 39.7vw;
    padding-left: 0;
    padding-top: 5vw;
  }
  footer .links__box {
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-top: 2.9vw;
  }
  footer .links__box a {
    padding: 4.2vw 0;
    margin-right: 0;
    font-size: 3.8vw;
  }
  footer h3 {
    text-align: center;
    font-size: 5.3vw;
  }
}
@media (max-width: 767px) {
  .break-mobile {
    display: block;
  }
  .break-desktop {
    display: none;
  }
}
@media (min-width: 768px) {
  .break-mobile {
    display: none;
  }
  .break-desktop {
    display: block;
  }
}/*# sourceMappingURL=style.css.map */