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

body {
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  color: #1d1d1d;
  min-height: 100dvh;
}

.container {
  position: relative;
  max-width: 430px;
  width: 100%;
  background: #ffffff;
  border-radius: 8px;
  padding: 20px 16px;
  overflow: hidden;
}

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

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

.age-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  height: 38px;
  width: 38px;
}

.logo {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}


.prizes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
  background: linear-gradient(135deg, #9b28f4, #d21d81);
  border-radius: 20px;
  margin-bottom: 14px;
}

.prize {
  display: flex;
  justify-content: space-evenly;
  padding: 16px;
  border-radius: 20px;
  background: #ffffff;
}
.prize__img {
  height: 90px;
  width: 152px;
  flex-shrink: 0;
}
.prize__info {
  width: 50%;
  margin-left: 24px;
}
.prize__title {
  font-size: 15px;
  font-weight: 600;
  line-height: 19px;
}

.prize__place {
  font-size: 14px;
  color: #6b6b6b;
  margin-top: 4px;
}

.cta {
  background: #00B956;
  border-radius: 32px;
  padding: 32px 26px;
  text-align: center;
  color: #ffffff;
  margin-bottom: 24px;
}
.cta__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 32px;
}
.cta__note {
  display: block;
  margin-top: 12px;
  font-weight: 100;
  font-size: 14px;
  line-height: 16px;
  text-align: center;
  letter-spacing: 0.02em;

}

.cta-section {
  position: relative;
}

.decor {
  position: absolute;
  pointer-events: none;
  width: 65px;
}
.decor--dart {
  left: -15px;
  bottom: 85px;
  width: 80px;
  z-index: 1;
}
.decor--star {
  right: -30px;
  top: 14px;
}


.btn {
  display: inline-block;
  padding: 20px 64px;
  border-radius: 48px;
  font-size: 20px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  border: none;
  cursor: pointer;
}
.btn--primary {
  position: relative;
  background: linear-gradient(135deg, #9b28f4, #d21d81);
  color: #fff;
  width: 100%;
  z-index: 9999;
}
.btn--ghost {
  border: 2px solid #bfbfbf;
  background: #fff;
  color: #6b6b6b;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  height: 38px;
  width: 130px;
}

.btn--ghost:hover {
  background: #f5f5f5;
}

.back {
  display: flex;
  text-align: center;
  justify-content: center;
  margin-bottom: 24px;
}


.footer {
  font-size: 12px;
  color: #9f9f9f;
  text-align: center;
  line-height: 1.4;
  > a {
    color: inherit;
    text-decoration: underline;
  }
}


@media (max-width: 400px) {
  .logo {
    height: 25px;
    margin-bottom: 10px;
  }
  .age-badge {
    height: 28px;
    width: 28px;
  }
  .prizes {
    display: flex;
    flex-direction: row;
    gap: 10px;
    padding: 10px;
    background: linear-gradient(135deg, #9b28f4, #d21d81);
    border-radius: 20px;
  }
  .prize {
    flex: 1 1 calc(34.333% - 10px);
    max-width: calc(34.333% - 10px);
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 5px 5px 5px;
    gap: 10px;
  }
  .prize__info {
    text-align: center;
    width: 100%;
    margin: 0;
  }
  .prize__title {
    font-size: 14px;
  }
  .prize__place {
    font-size: 10px;
  }
  .prize__img {
    width: 100px;
    height: 60px;
    border-radius: 20px;
  }
  .cta__title{
    font-size: 26px;
  }
  .decor--star {
    right: -14px;
    top: 14px;
    width: 65px;
  }
  .btn {
    font-size: 14px;
  }
}
@media (max-width: 370px) {
  .prize__img {
    width: 90px;
    height: 60px;
    border-radius: 20px;
  }
}