* {
  box-sizing: border-box;
}

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

body {
  display: grid;
  min-height: 100dvh;
  place-items: start center;
  overflow-x: hidden;
  background: #eee7b5;
  font-family: Arial, Helvetica, sans-serif;
}

.screen {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  max-width: 430px;
  min-height: 100dvh;
  overflow: hidden;
  background: #f1eab6;
}

.art {
  position: relative;
  width: min(100%, calc(100dvh * 9 / 16));
  aspect-ratio: 9 / 16;
}

.splash {
  display: block;
  width: 100%;
  height: auto;
}

.continue-link {
  position: absolute;
  left: 41.7%;
  bottom: 12.5%;
  width: 55.6%;
  transform: translateX(-50%);
  display: block;
  line-height: 0;
  -webkit-tap-highlight-color: transparent;
  outline: none;
  user-select: none;
  touch-action: manipulation;
}

.continue-link img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 180ms ease, filter 180ms ease;
  -webkit-user-drag: none;
  user-select: none;
}

.continue-link:focus {
  outline: none;
}

.continue-link:focus-visible img {
  filter: drop-shadow(0 0 0.35rem rgba(255, 255, 255, 0.85));
}

@media (hover: hover) and (pointer: fine) {
  .continue-link:hover img {
    transform: scale(1.06);
    filter: brightness(1.08) drop-shadow(0 0.6rem 0.75rem rgba(0, 0, 0, 0.28));
  }
}

@media (min-width: 700px) {
  body {
    padding: 24px;
    place-items: center;
  }

  .screen {
    width: min(calc(100vw - 48px), 430px, calc((100dvh - 48px) * 9 / 16));
    min-height: 0;
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  }
}

@media (max-aspect-ratio: 9 / 16) {
  body {
    background: #eee7b5;
  }
}
