body {
  margin: 0;
  font-family: sans-serif;
  color: white;
  text-align: center;
  background: #00B455;
  min-height: 100dvh;
  display: flex;
}

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

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

.container {
  position: relative;
  width: 100%;
  max-width: 430px;
  margin: 0 auto;
  background: #00B455;
  padding: 20px 10px;
  box-sizing: border-box;
  overflow: hidden;
}

.logo {
  height: 35px;
  margin-top: 10px;
  margin-bottom: 20px;
}

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

.ribbon {
  position: absolute;
}

.ribbon--tl {
  width: 103px;
  height: 97px;
  top: 40%;
  right: -15px;
}

.ribbon--bl {
  width: 38px;
  height: 36px;
  flex-shrink: 0;
  top: 22%;
  left: 10px;
}

h1 {
  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: 30px 0 30px;
}

.play-btn {
  border-radius: 100px;
  background: linear-gradient(90deg, #761B86 0%, #B22AC9 100%);
  color: white;
  width: 80%;
  height: 68px;
  padding: 0 64px;
  border: none;
  cursor: pointer;
  margin-bottom: 10px;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
}

.subtext {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 20px;
}

.back-btn {
  background: none;
  border: 1px solid #fff;
  color: white;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  margin-bottom: 60px;
  cursor: pointer;
}

.container-games {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 80px;
  overflow: hidden;
  margin-left: -10px;
  margin-right: -10px;

  :nth-child(1n) {
    padding: 0 5px;
    @media (max-width: 415px) {
      padding: 0 2px;
    }
    @media (max-width: 400px) {
      padding: 0 1px;
    }
  }
}

.games {
  display: flex;
  gap: 10px;
  justify-content: center;

  > img {
    width: 195px;
    height: 95px;
    flex-shrink: 0;
    border-radius: 15px;
    object-fit: cover;
    scroll-snap-align: start;
    @media (max-width: 400px) {
      width: 190px;
      height: 90px;
    }
    @media (max-width: 375px) {
      width: 180px;
      height: 85px;
    }
  }

}

.row2 {
  display: flex;
  overflow-x: hidden;
  margin-left: -100px;
  margin-right: -10px;
}


.footer {
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.70);
}

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

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

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

  h1 {
    font-size: 26px;
    margin: 10px 0 10px;
  }

  .play-btn {
    height: 60px;
    font-size: 20px;
    margin-bottom: 0;
  }

  .subtext {
    margin-bottom: 10px;
  }

  .games {
    gap: 5px;
  }

  .back-btn {
    font-size: 14px;
    padding: 6px 16px;
    margin-bottom: 20px;
  }

  .container-games {
    margin-bottom: 10px;
  }

  .ribbon--tl {
    width: 92px;
    height: 87px;
    top: 36%;
  }

  .ribbon--bl {
    top: 16%;
  }
}