*,
*::before,
*::after {
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: #3e2967;
}

.main {
  width: 100%;
  max-width: 720px;
  min-height: 1500px;
  margin: 0 auto;
  background-color: #2c1d4a;
}

.section--hero {
  position: relative;
  z-index: 0;
  margin: 0;
  padding: 0;
  line-height: 0;
}

.hero-stack {
  position: relative;
  display: block;
}

.hero-img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: calc(12px + env(safe-area-inset-top, 0px)) 16px
    calc(16px + env(safe-area-inset-bottom, 0px));
  pointer-events: none;
}

.hero-overlay__top,
.hero-overlay__bottom {
  pointer-events: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overlay__top {
  flex-shrink: 0;
}

.hero-logo {
  display: block;
  width: 18%;
  height: auto;
}

.hero-overlay__bottom {
  flex-shrink: 0;
  gap: 0px;
  margin-bottom: 72px;
}

.hero-cta {
  display: block;
  width: 60%;
  line-height: 0;
}

.hero-cta img {
  display: block;
  width: 100%;
  height: auto;
}

.hero-overlay__bottom .hero-cta + .hero-cta {
  margin-top: -14px;
}

@keyframes hero-cta-pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

.hero-cta--pulse {
  transform-origin: center center;
  animation: hero-cta-pulse 1.2s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .hero-cta--pulse {
    animation: none;
  }
}

.section--features {
  position: relative;
  z-index: 2;
  margin: -60px 0 0;
  padding: 0;
  line-height: 0;
}

.feature-img {
  display: block;
  width: 100%;
  height: auto;
}

.section--slide {
  position: relative;
  z-index: 1;
  margin: -74px 0 0;
  padding: 0;
  line-height: 0;
}

.slide-img {
  display: block;
  width: 100%;
  height: auto;
}

.section--games {
  position: relative;
  z-index: 0;
  margin: -40px 0 0;
  padding: 0 20px;
  line-height: 0;
}

.games-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
}

.game-img {
  display: block;
  width: 100%;
  height: auto;
}

.footer {
  padding: 28px 20px calc(28px + env(safe-area-inset-bottom, 0px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  text-align: center;
  background-color: #3d2967;
}

.footer-rule {
  flex-shrink: 0;
  align-self: stretch;
  width: calc(100% + 40px);
  margin: 0 -20px;
  height: 1px;
  border: 0;
  background-color: #200d47;
}

.footer-logo {
  display: block;
  width: min(30%, 120px);
  height: auto;
}

.footer-btn {
  display: block;
  width: min(60%, 210px);
  line-height: 0;
}

.footer-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-disclaimer {
  margin: 0;
  max-width: 42em;
  font-size: 12px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
  margin: 0;
  max-width: 42em;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.55);
}
