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

html,
body {
  min-height: 100%;
}

body {
  min-height: 100dvh;
  font-family: Arial, Helvetica, sans-serif;
  background: #050505;
}

.page {
  min-height: 100dvh;
  display: grid;
  place-items: center;
  background: #050505;
  overflow: hidden;
}

.shop-link {
  width: 100vw;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-decoration: none;
}

.shop-link:hover,
.shop-link:focus-visible {
  outline: none;
}

.shop-link:hover img,
.shop-link:focus-visible img {
  filter: brightness(1.08);
}

.shop-link img {
  width: auto;
  height: auto;
  max-width: 100vw;
  max-height: 100dvh;
  object-fit: contain;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.mobile-cta {
  position: fixed;
  left: 50%;
  bottom: max(18px, env(safe-area-inset-bottom));
  transform: translateX(-50%);
  display: none;
  width: min(calc(100vw - 32px), 420px);
  padding: 16px 18px;
  border: 2px solid #ffffff;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.88);
  color: #ffffff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
  box-shadow:
    0 0 16px rgba(255, 0, 200, 0.9),
    0 0 30px rgba(0, 221, 255, 0.7);
}

@media (max-width: 700px) {
  .shop-link {
    align-items: flex-start;
    padding-top: 10px;
    padding-bottom: 92px;
  }

  .shop-link img {
    max-width: calc(100vw - 12px);
    max-height: calc(100dvh - 112px);
  }

  .mobile-cta {
    display: block;
  }
}

@media (max-height: 520px) {
  .shop-link {
    align-items: center;
    padding: 0;
  }

  .shop-link img {
    max-width: 100vw;
    max-height: 100dvh;
  }

  .mobile-cta {
    display: none;
  }
}
