@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: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 12px;
}

@media (min-width: 320px) {
  .container {
    max-width: 320px;
    padding: 0 15px;
  }
}
@media (min-width: 375px) {
  .container {
    max-width: 375px;
  }
}
@media (min-width: 425px) {
  .container {
    max-width: 400px;
    padding: 0 18px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 768px;
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding: 0 32px;
  }
}
.header {
  padding-top: 8px;
  padding-bottom: 15px;
  position: relative;
}
.header__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 0 10px;
}
.header__logo-wrapper {
  flex: 1;
  text-align: center;
  margin-right: 10px;
}
.header__logo {
  max-width: 140px;
  height: auto;
}
.header__danger-wrapper {
  flex: 0 0 auto;
}
.header__danger {
  width: 26px;
  height: 26px;
}

@media (min-width: 320px) {
  .header {
    padding-top: 10px;
    padding-bottom: 18px;
  }
  .header__logo {
    max-width: 150px;
  }
  .header__danger {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 375px) {
  .header {
    padding-top: 12px;
    padding-bottom: 20px;
  }
  .header__logo {
    max-width: 160px;
  }
  .header__danger {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 425px) {
  .header {
    padding-top: 14px;
    padding-bottom: 22px;
  }
  .header__logo {
    max-width: 170px;
  }
  .header__danger {
    width: 32px;
    height: 32px;
  }
}
@media (min-width: 768px) {
  .header {
    padding-top: 16px;
    padding-bottom: 24px;
  }
  .header__logo {
    max-width: 180px;
  }
  .header__danger {
    width: 34px;
    height: 34px;
  }
}
.footer {
  padding: 8px 0;
  background: rgba(0, 0, 0, 0.02);
}
.footer__container {
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
}
.footer__container p {
  color: #000000;
  opacity: 0.7;
  font-size: 11px;
  margin: 0;
  line-height: 1.4;
  padding: 0 10px;
}
.footer__container a {
  color: inherit;
  text-decoration: underline;
}

@media (min-width: 320px) {
  .footer {
    padding: 10px 0;
  }
  .footer__container p {
    font-size: 12px;
  }
}
@media (min-width: 375px) {
  .footer__container {
    max-width: 380px;
  }
  .footer__container p {
    font-size: 13px;
  }
}
@media (min-width: 425px) {
  .footer__container p {
    font-size: 14px;
  }
}
.main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.main__container {
  padding-top: 15px;
  padding-bottom: 60px;
  position: relative;
}
.main__title {
  font-size: 22px;
  font-weight: 900;
  color: #000000;
  text-align: center;
  margin-bottom: 15px;
  line-height: 1.25;
  padding: 0 8px;
}
.main__title .main__subtitle {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  opacity: 0.7;
  margin-top: 8px;
  line-height: 1.3;
}
.main__title .main__subtitle strong {
  color: #3a9966;
  font-weight: 700;
  font-size: 16px;
}
.main .main__features {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 18px 0;
  flex-wrap: wrap;
}
.main .main__features .feature {
  background: rgba(118, 27, 134, 0.08);
  color: #000000;
  padding: 5px 10px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
}
.main__illustration {
  display: block;
  width: 100%;
  max-width: 240px;
  margin: 0 auto 20px;
  object-fit: contain;
  max-height: 160px;
  border-radius: 20px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(0, 0, 0, 0.05);
  background: #f9f9f9;
  animation: floatGame 6s ease-in-out infinite;
  transform-origin: center;
}
.main__button {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}
.main__link {
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  width: 100%;
  max-width: 240px;
  padding: 16px 15px;
  border-radius: 40px;
  background: #b22ac9;
  text-align: center;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  animation: pulseGame 2.2s infinite;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.main__link:active {
  transform: scale(0.98);
  box-shadow: 0 4px 12px rgba(178, 42, 201, 0.3);
}
.main__pay {
  text-align: center;
  color: #000000;
  font-size: 11px;
  opacity: 0.7;
  margin-bottom: 15px;
  line-height: 1.3;
  padding: 0 10px;
}
.main__back {
  font-size: 14px;
  color: #000000;
  opacity: 0.7;
  text-decoration: underline;
  width: max-content;
  padding: 8px 16px;
  border-radius: 20px;
  background: rgba(0, 0, 0, 0.05);
}

.customselect {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0 auto 20px;
  max-width: 160px;
  width: 100%;
}
.customselect button {
  color: #000000;
  text-align: center;
  opacity: 0.8;
  font-size: 14px;
  width: 100%;
  padding: 10px;
  background: #ffffff;
  border-radius: 100px;
  border: 1px solid #000000;
  cursor: pointer;
}
.customselect ul {
  position: absolute;
  top: 100%;
  width: 100%;
  display: none;
  list-style: none;
  background: #ffffff;
  z-index: 2;
  border-radius: 0 0 12px 12px;
  border: 1px solid #000000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  margin-top: -1px;
}
.customselect ul li {
  padding: 8px;
  cursor: pointer;
  font-size: 14px;
}
.customselect ul li:hover {
  background: rgba(178, 42, 201, 0.1);
}
.customselect.open button {
  border-radius: 16px 16px 0 0;
}
.customselect.open ul {
  display: block;
}

.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: 140px;
  height: auto;
}
.header__danger-wrapper {
  flex: 0 0 auto;
  padding-left: 10px;
}
.header__danger {
  width: 26px;
  height: 26px;
}

@media (min-width: 320px) {
  .main__container {
    padding-top: 18px;
    padding-bottom: 65px;
  }
  .main__title {
    font-size: 24px;
  }
  .main__title .main__subtitle {
    font-size: 15px;
  }
  .main__title .main__subtitle strong {
    font-size: 17px;
  }
  .main .main__features {
    gap: 12px;
    margin: 20px 0;
  }
  .main .main__features .feature {
    font-size: 13px;
    padding: 6px 12px;
  }
  .main__illustration {
    max-width: 260px;
    max-height: 170px;
  }
  .main__link {
    font-size: 19px;
    max-width: 260px;
    padding: 17px 15px;
  }
  .main__pay {
    font-size: 12px;
  }
  .main__back {
    font-size: 15px;
  }
  .customselect {
    max-width: 170px;
  }
  .customselect button {
    font-size: 15px;
    padding: 11px;
  }
  .header__logo {
    max-width: 150px;
  }
  .header__danger {
    width: 28px;
    height: 28px;
  }
}
@media (min-width: 375px) {
  .main__container {
    padding-top: 20px;
    padding-bottom: 70px;
  }
  .main__title {
    font-size: 26px;
    margin-bottom: 18px;
  }
  .main__title .main__subtitle {
    font-size: 16px;
    margin-top: 10px;
  }
  .main__title .main__subtitle strong {
    font-size: 18px;
  }
  .main .main__features {
    gap: 14px;
    margin: 22px 0;
  }
  .main .main__features .feature {
    font-size: 14px;
    padding: 7px 14px;
  }
  .main__illustration {
    max-width: 280px;
    max-height: 180px;
  }
  .main__link {
    font-size: 20px;
    max-width: 280px;
    padding: 18px 15px;
  }
  .main__pay {
    font-size: 13px;
  }
  .main__back {
    font-size: 16px;
  }
  .customselect {
    max-width: 180px;
  }
  .customselect button {
    font-size: 16px;
    padding: 12px;
  }
  .header__logo {
    max-width: 160px;
  }
  .header__danger {
    width: 30px;
    height: 30px;
  }
}
@media (min-width: 425px) {
  .main__container {
    padding-top: 22px;
    padding-bottom: 75px;
  }
  .main__title {
    font-size: 28px;
  }
  .main__title .main__subtitle {
    font-size: 17px;
  }
  .main__title .main__subtitle strong {
    font-size: 19px;
  }
  .main__illustration {
    max-width: 300px;
    max-height: 190px;
  }
  .main__link {
    font-size: 21px;
    max-width: 300px;
    padding: 20px 15px;
  }
}
@media (min-width: 768px) {
  .main__container {
    padding-top: 25px;
    padding-bottom: 80px;
  }
  .main__title {
    font-size: 32px;
  }
  .main__title .main__subtitle {
    font-size: 18px;
  }
  .main__title .main__subtitle strong {
    font-size: 20px;
  }
  .main .main__features {
    gap: 16px;
    margin: 24px 0;
  }
  .main .main__features .feature {
    font-size: 15px;
    padding: 8px 16px;
  }
  .main__illustration {
    max-width: 320px;
    max-height: 200px;
  }
  .main__link {
    font-size: 22px;
    max-width: 320px;
    padding: 22px 15px;
  }
  .main__pay {
    font-size: 14px;
  }
}
@keyframes pulseGame {
  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 floatGame {
  0%, 100% {
    transform: translateY(0) rotate(0.5deg);
  }
  50% {
    transform: translateY(-8px) rotate(-0.5deg);
  }
}

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