* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Inter;
}

img {
  width: 100%;
}

a {
  text-decoration: none;
}

.wrapper {
  max-width: 1056px;
  margin: 0 auto;
  padding: 0 16px;
}

.hero {
  width: 100%;
  min-height: 100vh;
  background-image: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.4)
    ),
    url("./background.png");
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}

.logo-wrapper {
  display: flex;
  justify-content: center;
  padding-top: 32px;
}

.prices-text {
  color: #ffbc00;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.stroke {
  color: #fff;
  background: linear-gradient(
    180deg,
    #fcf6d1 0%,
    #bd9457 10.42%,
    #e3ca89 25%,
    #fee8c8 69.79%,
    #4d3a1a 85.42%,
    #fcf0d1 100%
  );
  background-clip: text;
  -webkit-text-stroke: 5px transparent;
}

.text {
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin-bottom: 16px;
}

.price {
  font-size: 128px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
}

.prices-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 531px;
  margin: 0 auto;
  padding: 16px 0;
}

.gradient-stroke-text {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.main-banner {
  display: flex;
  justify-content: center;
  margin-bottom: 32px;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.button {
  position: relative;
  z-index: 1;
  display: inline-block;
  color: #000;
  text-align: center;
  font-size: 40px;
  border: none;
  cursor: pointer;
  padding: 27px 80px 40px 80px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  border-radius: 100px;
  background: radial-gradient(
      56.27% 117.62% at 37.5% 100%,
      rgba(255, 255, 255, 0.29) 0%,
      rgba(255, 255, 255, 0.05) 100%
    ),
    radial-gradient(
      112.91% 147.56% at 43.75% -31.25%,
      rgba(255, 198, 137, 0.92) 21.25%,
      rgba(238, 255, 106, 0.57) 88.62%
    ),
    radial-gradient(
      178.09% 220.16% at 94.89% -132.81%,
      #c39337 67.59%,
      rgba(219, 255, 0, 0.38) 100%
    ),
    #f6d280;
  box-shadow: 0 0 4px 0 #fff inset;
}

.button::after {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(
      238.39% 44.19% at 96.59% 31.25%,
      rgba(255, 255, 255, 0.3) 0%,
      rgba(255, 255, 255, 0) 100%
    ),
    radial-gradient(
      182.56% 55.34% at 5.68% 100%,
      #fbf8b4 0%,
      rgba(189, 143, 53, 0) 100%
    ),
    radial-gradient(
      137.51% 118.3% at 32.95% 0%,
      #d7a645 21.25%,
      rgba(255, 223, 106, 0.57) 88.62%
    ),
    radial-gradient(
      178.09% 220.16% at 94.89% -132.81%,
      #c29336 67.59%,
      rgba(255, 199, 0, 0.38) 100%
    ),
    #f6d280;
  box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6) inset,
    -20px -20px 50px 0 rgba(211, 70, 155, 0.4),
    0 20px 60px 0 rgba(232, 205, 110, 0.2),
    0 10px 60px 0 rgba(174, 113, 41, 0.8);
  animation: glowPulse 1s infinite ease-in-out;
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6) inset,
      -20px -20px 50px 0 rgba(211, 70, 155, 0.4),
      0 20px 60px 0 rgba(232, 205, 110, 0.2),
      0 10px 60px 0 rgba(174, 113, 41, 0.8);
  }
  50% {
    box-shadow: 0 0 30px 5px rgba(255, 255, 255, 0.8) inset,
      -25px -25px 60px 0 rgba(211, 70, 155, 0.6),
      0 25px 70px 0 rgba(232, 205, 110, 0.4),
      0 15px 70px 0 rgba(174, 113, 41, 1);
  }
  100% {
    box-shadow: 0 0 20px 0 rgba(255, 255, 255, 0.6) inset,
      -20px -20px 50px 0 rgba(211, 70, 155, 0.4),
      0 20px 60px 0 rgba(232, 205, 110, 0.2),
      0 10px 60px 0 rgba(174, 113, 41, 0.8);
  }
}

@keyframes innerGlow {
  0% {
    box-shadow: 0 0 4px 0 #fff inset;
  }
  50% {
    box-shadow: 0 0 8px 2px #fff inset;
  }
  100% {
    box-shadow: 0 0 4px 0 #fff inset;
  }
}

.players-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 16px;
}

.players-wrapper img {
  max-width: 744px;
}

.melbet-wrapper {
  display: flex;
  justify-content: center;
  padding-bottom: 32px;
}

.melbet-wrapper img {
  max-width: 246px;
}

@media (max-width: 700px) {
  .prices-text {
    font-size: 16px;
  }
  .price {
    font-size: 38px;
  }
  .prices-wrapper {
    justify-content: center;
    gap: 64px;
  }
  .stroke {
    -webkit-text-stroke: 2px transparent;
  }
  .text {
    font-size: 16px;
  }
  .button {
    padding: 4px 50px 15px 50px;
    font-size: 24px;
    font-weight: 500;
  }
  .button::after {
    top: -4px;
  }
}
