*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  background: #00B956;
  min-height: 100dvh;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1 0 auto;
  flex-direction: column;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wrapper {
  position: relative;
  width: 100%;
  max-width: 425px;
  background: #00B956;
  border-radius: 8px;
  padding: 32px 20px 40px;
  overflow: hidden;
  text-align: center;
}

.ribbon {
  position: absolute;
}

.ribbon--tl {
  width: 78px;
  height: 84px;
  top: 58px;
  right: -5px;
}

.ribbon--bl {
  width: 55px;
  height: 60px;
  bottom: 280px;
  left: -5px;
  transform: scaleX(-1);
}

.badge18 {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
}

.logo img {
  height: 40px;
  margin-bottom: 28px;
}

.title-l {
  color: #FFF;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 34px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  margin-bottom: 28px;
}

.title-m {
  color: #FFF;
  text-align: center;
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
  margin: 34px 0 18px;
}

.prizes {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.prize {
  height: 90px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  padding: 14px 18px;
}

.prize__text {
  max-width: 55%;
  text-align: left;
  color: white;
}

.prize__text h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.25;
}

.prize__text p {
  font-size: 13px;
  margin-top: 4px;
}

.prize__img__ps {
  position: absolute;
  right: 30px;
  width: 110px;
  height: 125px;
  flex-shrink: 0;
}

.prize__img__switch {
  width: 150px;
  height: 150px;
  flex-shrink: 0;
}

.prize__img__money {
  position: absolute;
  right: 0;
  height: 100px;
  width: 140px;
  transform: rotate(90deg);
}

.btn {
  display: inline-block;
  border-radius: 48px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 600;
}

.btn--gradient {
  padding: 18px 24px;
  font-size: 20px;
  color: #fff;
  border: none;
  width: 80%;
  border-radius: 100px;
  background: linear-gradient(90deg, #761B86 0%, #B22AC9 100%);
}

.btn--ghost {
  padding: 10px 32px;
  font-size: 16px;
  color: #dcdcdc;
  border: 2px solid #bfbfbf;
  background: transparent;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
}

.note {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #e6ffe6;
}

.back {
  margin: 22px 0;
}

.footer {
  font-size: 12px;
  line-height: 1.35;
  color: #c8ffc8;
}

.footer a {
  color: inherit;
  text-decoration: underline;
}

@media (max-width: 400px) {
  .wrapper {
    padding: 12px 10px 15px;
  }

  .badge18 {
    width: 28px;
    height: 28px;
  }

  .logo img {
    height: 25px;
    margin-bottom: 10px;
  }

  .title-l {
    font-size: 28px;
    margin-bottom: 10px;
  }

  .title-m {
    font-size: 22px;
    margin: 10px 0 16px;
  }

  .prizes {
    gap: 10px;
    margin: 0 20px;
  }

  .prize {
    gap: 10px;
    padding: 12px 14px;
    text-align: center;
  }

  .back {
    margin: 10px 0;
  }

  .prize__text {
    max-width: 100%;
    text-align: center;
  }

  .prize__img__ps {
    position: absolute;
    right: 30px;
    width: 90px;
    height: 105px;
    flex-shrink: 0;
  }

  .btn--gradient {
    font-size: 18px;
    padding: 16px 20px;
  }

  .note {
    font-size: 12px;
  }

  .btn--ghost {
    font-size: 14px;
  }

  .ribbon--tl {
    width: 54px;
    height: 60px;
    top: 70px;
    right: -15px;
  }

  .ribbon--bl {
    width: 50px;
    height: 55px;
    bottom: 220px;
    left: -5px;
    transform: scaleX(-1);
  }
}