@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Thin.ttf") format("truetype");
  font-style: normal;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraLight.ttf") format("truetype");
  font-style: normal;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Light.ttf") format("truetype");
  font-style: normal;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Regular.ttf") format("truetype");
  font-style: normal;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Medium.ttf") format("truetype");
  font-style: normal;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-SemiBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 600;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Bold.ttf") format("truetype");
  font-style: normal;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-ExtraBold.ttf") format("truetype");
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("../fonts/Inter-Black.ttf") format("truetype");
  font-style: normal;
  font-weight: 900;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #fff;
}

.wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  min-height: 100dvh;
}
.wrapper header,
.wrapper footer,
.wrapper main {
  position: relative;
  z-index: 2;
}
.wrapper header,
.wrapper footer {
  flex: 0 0 auto;
}
.wrapper main {
  flex: 1 0 auto;
}

.container {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 15px;
}
@media (max-height: 850px) {
  .container {
    padding: 0 18px;
  }
}

.header {
  padding-top: 11px;
  padding-bottom: 20px;
  position: relative;
}
@media (max-width: 390px) {
  .header {
    padding-bottom: 10px;
  }
}
.header__container {
  display: flex;
  justify-content: center;
  position: relative;
}
.header__danger {
  position: absolute;
  right: 0;
  top: 0;
}

.footer {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.02);
}
.footer__container {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}
.footer__container p {
  color: #333333;
  opacity: 0.7;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}
.footer__container a {
  color: inherit;
  text-decoration: underline;
}

.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.main__container {
  padding-top: 20px;
  padding-bottom: 60px;
  position: relative;
}
.main__title {
  font-size: 34px;
  font-weight: 900;
  color: #333333;
  text-align: center;
  margin-bottom: 12px;
  line-height: 1.2;
  font-variant-numeric: tabular-nums;
}
.main__title span {
  color: #00b956;
  font-weight: 900;
  text-shadow: 0 0 12px rgba(0, 185, 86, 0.3);
}
.main__subtitle {
  font-size: 18px;
  color: #333333;
  opacity: 0.8;
  text-align: center;
  margin-bottom: 16px;
}
.main__timer {
  font-size: 14px;
  color: #333333;
  opacity: 0.7;
  text-align: center;
  margin-bottom: 24px;
}
.main__timer strong {
  font-weight: 700;
  color: linear-gradient(90deg, #761b86 0%, #b22ac9 100%);
}
.main__illustration {
  display: block;
  width: 100%;
  max-width: 260px;
  margin: 0 auto 28px;
  object-fit: contain;
  max-height: 180px;
  border-radius: 28px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.04);
  background: #fafafa;
  animation: floatBonus 5s ease-in-out infinite;
}
.main__button {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.main__link {
  text-decoration: none;
  font-size: 22px;
  font-weight: 500;
  color: #ffffff;
  width: 100%;
  padding: 20px 15px;
  border-radius: 190px;
  background: linear-gradient(90deg, #761b86 0%, #b22ac9 100%);
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
  animation: pulseBonus 2s infinite;
}
.main__link:active {
  transform: scale(0.98);
}
.main__pay {
  text-align: center;
  color: #333333;
  font-size: 12px;
  opacity: 0.7;
  margin-bottom: 16px;
}
.main__back {
  font-size: 16px;
  color: #333333;
  opacity: 0.7;
  text-decoration: underline;
  margin: 0 auto;
  width: max-content;
}
.main__particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}
.main .particle {
  position: absolute;
  width: 8px;
  height: 8px;
  background: #00b956;
  border-radius: 50%;
  opacity: 0.3;
  animation: particleFloat 15s infinite linear;
}
.main .particle:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
  width: 6px;
  height: 6px;
}
.main .particle:nth-child(2) {
  top: 60%;
  right: 15%;
  animation-delay: 2s;
  width: 10px;
  height: 10px;
}
.main .particle:nth-child(3) {
  bottom: 30%;
  left: 20%;
  animation-delay: 4s;
  width: 7px;
  height: 7px;
}

@keyframes pulseBonus {
  0% {
    box-shadow: 0 0 0 0 rgba(178, 42, 201, 0.4);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(178, 42, 201, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(178, 42, 201, 0);
  }
}
@keyframes floatBonus {
  0%, 100% {
    transform: translateY(0) rotate(0.3deg);
  }
  50% {
    transform: translateY(-10px) rotate(-0.3deg);
  }
}
@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.3;
  }
  90% {
    opacity: 0.2;
  }
  100% {
    transform: translateY(-100vh) translateX(20px);
    opacity: 0;
  }
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0 10px;
}
.header__logo-wrapper {
  flex: 1;
  text-align: center;
}
.header__logo {
  max-width: 180px;
  height: auto;
}
.header__danger-wrapper {
  flex: 0 0 auto;
  padding-left: 10px;
}
.header__danger {
  width: 28px;
  height: 28px;
}

.footer {
  padding: 10px 0;
  background: rgba(0, 0, 0, 0.02);
}
.footer__container {
  max-width: 380px;
  margin: 0 auto;
  text-align: center;
}
.footer__container p {
  color: #333333;
  opacity: 0.7;
  font-size: 12px;
  margin: 0;
  line-height: 1.4;
}
.footer__container a {
  color: inherit;
  text-decoration: underline;
}

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