body {
  font-family: "IBM Plex Sans", Helvetica;
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100vw;
  background: url("./public/images/background.svg") no-repeat center center fixed;
  background-size: cover; /* Zmieniono z contain na cover */
  background-color: black;
  color: #141436;
  overflow: hidden;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

video,
object,
svg.fullsize {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover; /* Zmieniono z contain na cover */
}

#next-step {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: inherit;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.submit-button {
  position: relative;
  border: none;
  background-color: #2ecc71;
  transition: background-color ease-in-out 0.25s;
  padding: 12px 32px;
  border-radius: 91px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  font-size: 18px;
  color: #fff;
  line-height: 22.5px;
}
.submit-button:hover {
  background-color: #23b963;
}
.submit-button.centered {
  margin: auto;
}

#modal {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
}
#modal .modal-content {
  display: flex;
  justify-content: space-between;
  background-color: white;
  flex-direction: column;
  gap: 42px;
  border-radius: 12px;
  padding: 32px;
  background-repeat: no-repeat;
  z-index: 1;
}
#modal .modal-content .pointer {
  display: none;
}
@supports (clip-path: inset(50%)) {
  #modal .modal-content .pointer {
    bottom: 0;
    translate: -50% 48%;
    display: block;
    height: 20px;
    width: 20px;
    background-color: inherit;
    border: inherit;
    position: absolute;
    left: 50%;
    clip-path: polygon(0% 0%, 100% 100%, 0% 100%);
    transform: rotate(-45deg);
    border-radius: 0 0 0 0.25em;
    background-color: white;
  }
  #modal .modal-content .pointer.top {
    top: 0;
    translate: -50% -48%;
    rotate: 180deg;
  }
  #modal .modal-content .pointer.table-pointer {
    left: 90%;
  }
}

.step-1 {
  width: 538px;
}

.step-2 {
  width: 467px;
}

.step-3 {
  width: 487px;
}

.step-4 {
  width: 457px;
}

.step-5 {
  width: max-content;
}

.step-6 {
  width: 578px;
}

.step-7 {
  width: 598px;
}

.step-8,
.step-9 {
  width: 640px;
}

.step-10 {
  width: 374px;
}

h1 {
  padding: 0;
  margin: 0;
  font-weight: 600;
  font-size: 36px;
  text-align: center;
  line-height: 45px;
  letter-spacing: -0.72px;
}

h2 {
  padding: 0;
  margin: 0;
  font-weight: 600;
  letter-spacing: -0.48px;
  line-height: 30px;
  font-size: 24px;
  text-align: center;
}
h2 img {
  vertical-align: middle;
}

@keyframes moving-hand {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.hand {
  position: absolute;
  animation: moving-hand 1s infinite;
}
.hand.small-button {
  left: -5px;
}
.hand.big-button {
  right: -100px;
}

.shadow {
  background: rgba(0, 0, 0, 0.5019607843);
}

.blur {
  backdrop-filter: blur(5px);
}

.blur,
.shadow {
  height: 100%;
  width: 100%;
  position: absolute;
}

@property --opacity {
  syntax: "<angle>";
  initial-value: 0deg;
}
.progress {
  --opacity: calc(360deg * 0.1 * var(--current-step));
  position: relative;
  display: inline-flex;
  align-items: center;
}
.progress .progressbar {
  padding-inline: 20px 32px;
  display: flex;
  width: max-content;
  align-items: center;
  height: 57px;
  border-radius: 12px;
  background-color: white;
}
.progress .progress-track {
  translate: -30px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  border: 4.34px solid #ffffff;
  background-color: #141436;
  height: 66px;
  width: 66px;
}
.progress .progress-track .center-ball {
  display: inline-block;
  z-index: 1;
  border-radius: 50%;
  height: 21px;
  width: 21px;
  background-color: white;
}
.progress .progress-track::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background-image: conic-gradient(transparent var(--opacity), #141436 var(--opacity));
}
.progress .progress-track::before {
  content: "";
  display: inline-block;
  position: absolute;
  border-radius: 50%;
  height: 100%;
  width: 100%;
  background-image: linear-gradient(199.72deg, #5b79ff 11.03%, rgba(91, 121, 255, 0.44) 44.38%);
}

@keyframes conic-gradient {
  20% {
    --opacity: calc(360deg * 0.1 * (var(--current-step) + 0.2));
  }
  40% {
    --opacity: calc(360deg * 0.1 * (var(--current-step) + 0.4));
  }
  60% {
    --opacity: calc(360deg * 0.1 * (var(--current-step) + 0.6));
  }
  80% {
    --opacity: calc(360deg * 0.1 * (var(--current-step) + 0.8));
  }
  100% {
    --opacity: calc(360deg * 0.1 * (var(--current-step) + 1));
  }
}
.invisible {
  transition: opacity 0.25s ease-in;
}

.is-invisible {
  opacity: 0;
}

.hidden {
  display: none !important;
}

.victory-box {
  margin: auto;
  position: absolute;
  background-color: #282a49;
  border: 12px solid #debb4d;
  padding: 48px;
  border-radius: 20px;
  gap: 36px;
  width: 502px;
}
.victory-box .header {
  color: #5a7aff;
  font-weight: 600;
  font-size: 28px;
  font-weight: 600;
  line-height: 35px;
  letter-spacing: -0.02em;
  text-align: center;
}
.victory-box .total {
  font-size: 90px;
  font-weight: 600;
  line-height: 113px;
  letter-spacing: -0.02em;
  text-align: center;
  color: #fff;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
.pulse {
  cursor: pointer;
  animation: pulse 1s infinite;
  transform-origin: center;
  transform-box: fill-box;
}

.exit-button {
  box-sizing: border-box;
  background: #141436;
  width: 40px;
  height: 40px;
  top: 28px;
  right: 28px;
  padding: 8px;
  border-radius: 32px;
  position: absolute;
  z-index: 999;
  display: flex;
}
.exit-button:hover {
  background: #09091a;
}
.exit-button .exit-button-inner {
  flex: 1;
  border-radius: 50%;
  border: solid 2px #fff;
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  display: flex;
}
.exit-button .exit-button-inner > * {
  line-height: 0;
  margin: auto;
}

foreignObject {
  overflow: visible;
}

.clickable {
  cursor: pointer;
}

.forced-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

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