*,
*::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;
  width: 100%;
  max-width: 425px;
  background: #fff;
  border-radius: 8px;
  padding: 24px 16px 10px;
  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: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
}

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

.games {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.games > img {
  width: 100%;
}

.cta {
  text-align: center;
  margin-bottom: 28px;
  position: relative;
}

.cta__title {
  margin-bottom: 24px;
  width: 100%;
  color: #333;
  text-align: center;
  font-feature-settings: 'liga' off, 'clig' off;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: 120%;
}

.decor-bolt {
  position: absolute;
  width: 28px;
}

.decor-bolt--top {
  left: 8px;
  bottom: 40px;
  width: 12px;
  height: 16px;
  transform: scaleX(-1);
}

.decor-bolt--bottom {
  right: 0;
  bottom: -90px;
  width: 20px;
  height: 30px;
}

.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 {
  width: 85%;
  padding: 20px 24px;
  font-size: 18px;
  color: #fff;
  background: linear-gradient(135deg, #9b28f4, #d21d81);
}

.btn--ghost {
  margin-top: 12px;
  padding: 10px 28px;
  font-size: 16px;
  background: #fff;
  color: #6b6b6b;
  border: 2px solid #bfbfbf;
}

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

.cta__note {
  display: block;
  margin-top: 10px;
  font-size: 13px;
}

.back {
  text-align: center;
  margin-bottom: 24px;
}

.footer {
  font-size: 12px;
  color: #9f9f9f;
  text-align: center;
  line-height: 1.35;
}

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

@media (max-width: 400px) {
  .container {
    max-width: 375px;
  }

  .cta__title {
    font-size: 26px;
    margin-bottom: 5px;
  }

  .age-badge {
    width: 28px;
    height: 28px;
  }

  .games {
    margin-bottom: 10px;
  }

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

  .back {
    margin-bottom: 10px;
  }

  .cta {
    margin-bottom: 5px;
  }

  .decor-bolt {
    width: 24px;
  }

  .decor-bolt--top {
    bottom: 140px;
    left: 0;
  }

  .decor-bolt--bottom {
    bottom: -10px;
    right: -10px;
  }
}

@media (max-width: 350px) {
  .container {
    max-width: 325px;
    padding: 24px 10px 10px;
  }

  .cta__title {
    font-size: 24px;
  }

  .decor-bolt {
    width: 24px;
  }

  .decor-bolt--top {
    bottom: 120px;
    left: -5px;
  }

  .decor-bolt--bottom {
    bottom: -10px;
    right: -5px;
    width: 18px;
    height: 28px;
  }
}