@import url("https://fonts.googleapis.com/css2?family=Cinzel:wght@700;800;900&display=swap");

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; padding: 0; }
body { overflow: hidden; background: #041a0f; }

.page{
  height: 100vh;
  width: 100vw;
  display: grid;
  place-items: center;
  background: #041a0f;
}

.stage{
  position: relative;
  width: min(100vw, calc(100vh * (1024 / 1792)));
  aspect-ratio: 1024 / 1792;
  max-height: 100vh;
  background-image: url("/static/images/landing_page_1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  isolation: isolate;
}

.hero{
  position: absolute;
  top: clamp(18px, 3.2vh, 44px);
  left: 50%;
  transform: translateX(-50%);
  width: min(78%, 420px);
  text-align: center;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.heroBadge{
  width: min(100%, 380px);
  height: auto;
  display: block;
  margin: 0 auto;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.55));
}

.actions{
  margin-top: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 2vw, 16px);
  pointer-events: auto;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 14px;
  outline: none;
  transform: translateZ(0);
}

.btn img{
  width: clamp(120px, 22vw, 180px);
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 10px 16px rgba(0,0,0,.60));
  transition: transform .12s ease, filter .12s ease;
}

.btn:hover img{
  transform: scale(1.02);
  filter: drop-shadow(0 14px 20px rgba(0,0,0,.75));
}

.btn:focus-visible img{
  transform: scale(1.02);
  filter: drop-shadow(0 14px 22px rgba(0,0,0,.8));
}
