
:root {
  --background: #05060a;
  --foreground: #f7f4ed;
  --silver: #d9e7ef;
  --ice: #86d9e8;
  --pointer-x: 0px;
  --pointer-y: 0px;
}

[data-recipient],
[data-recipient-upper],
.open-label b {
  font: inherit;
  font-weight: inherit;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-geist-sans), Arial, sans-serif;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.gift-world {
  position: relative;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(52, 92, 108, 0.16), transparent 28%),
    linear-gradient(145deg, #020308 0%, #090d14 48%, #020306 100%);
}

.gift-world::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -7;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle, black 0%, transparent 74%);
}

.aurora {
  position: absolute;
  z-index: -6;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  pointer-events: none;
  transition: opacity 1.2s ease, transform 3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.aurora-one {
  top: -36vw;
  left: -18vw;
  background: #2f8ca7;
}

.aurora-two {
  right: -28vw;
  bottom: -38vw;
  background: #7c4c83;
}

.vignette {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  box-shadow: inset 0 0 180px 45px rgba(0, 0, 0, 0.72);
}

.film-grain {
  position: absolute;
  inset: -50%;
  z-index: 19;
  opacity: 0.025;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
  animation: grain 0.22s steps(2) infinite;
}

.star-field {
  position: absolute;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  transition: opacity 1s ease;
}

.star {
  position: absolute;
  border-radius: 50%;
  background: #eafaff;
  box-shadow: 0 0 8px rgba(184, 238, 255, 0.95);
  animation: twinkle 4s ease-in-out infinite;
}

.topbar {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: flex-start;
  padding: clamp(22px, 3vw, 42px) clamp(22px, 5vw, 78px);
}

.brand {
  display: flex;
  align-items: center;
  color: #fff;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: auto;
  height: clamp(42px, 4.4vw, 58px);
  filter: drop-shadow(0 0 16px rgba(179, 236, 247, 0.18));
}

.artifact-button:focus-visible,
.download-button:focus-visible {
  outline: 1px solid rgba(170, 232, 246, 0.85);
  outline-offset: 7px;
}

.experience {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 100%;
  min-height: 0;
  place-items: center;
  padding: 120px 24px 92px;
}

.sealed-copy,
.reveal-copy {
  position: absolute;
  width: min(780px, calc(100% - 40px));
  text-align: center;
}

.sealed-copy {
  top: clamp(110px, 14vh, 160px);
  z-index: 4;
  transition: opacity 0.65s ease, transform 1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  margin: 0 0 16px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(183, 219, 230, 0.64);
}

.eyebrow span {
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(150, 213, 229, 0.38);
}

.sealed-copy h1 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(48px, 6vw, 88px);
  font-weight: 400;
  line-height: 0.9;
  letter-spacing: -0.025em;
  text-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
}

.sealed-copy h1 em {
  display: block;
  margin-top: 12px;
  font-weight: 400;
  color: #b8dbe5;
}

.intro {
  margin: 21px auto 0;
  color: rgba(226, 231, 232, 0.54);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(17px, 1.55vw, 21px);
  line-height: 1.65;
  letter-spacing: 0.03em;
}

.gift-stage {
  position: relative;
  display: grid;
  width: min(650px, 95vw);
  height: min(650px, 69vh);
  place-items: center;
  transform: translate(var(--pointer-x), calc(var(--pointer-y) + clamp(82px, 11vh, 116px)));
  transition: transform 0.2s ease-out;
  perspective: 1100px;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(142, 208, 224, 0.12);
  border-radius: 50%;
  transform: rotateX(68deg);
}

.orbit::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -3px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4f4ff;
  box-shadow: 0 0 15px #8de5f5;
}

.orbit-large {
  width: 520px;
  height: 520px;
  animation: orbit 16s linear infinite;
}

.orbit-small {
  width: 350px;
  height: 350px;
  animation: orbit 11s linear infinite reverse;
}

.floor-glow {
  position: absolute;
  top: 59%;
  width: 300px;
  height: 74px;
  border-radius: 50%;
  background: rgba(101, 196, 216, 0.22);
  filter: blur(34px);
  animation: breathe 3.8s ease-in-out infinite;
}

.artifact-button {
  position: relative;
  z-index: 3;
  display: grid;
  width: 260px;
  height: 330px;
  cursor: pointer;
  place-items: center;
  border: 0;
  color: inherit;
  background: transparent;
}

.artifact-button:disabled {
  cursor: default;
}

.artifact {
  position: relative;
  display: block;
  width: 176px;
  height: 178px;
  transform: rotateX(-5deg) rotateY(-7deg) translateZ(0);
  transform-style: preserve-3d;
  transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
  animation: float 4.8s ease-in-out infinite;
}

.artifact-button:hover .artifact {
  transform: rotateX(-2deg) rotateY(4deg) translateY(-7px) scale(1.035);
}

.artifact-halo {
  position: absolute;
  inset: -75px;
  border: 1px solid rgba(141, 222, 239, 0.08);
  border-radius: 50%;
  box-shadow:
    inset 0 0 60px rgba(134, 217, 232, 0.08),
    0 0 70px rgba(134, 217, 232, 0.08);
  animation: halo 4s ease-in-out infinite;
}

.artifact-box,
.artifact-lid {
  position: absolute;
  left: 0;
  display: block;
  width: 176px;
  border: 1px solid rgba(220, 247, 251, 0.34);
  overflow: hidden;
  background:
    linear-gradient(115deg, transparent 13%, rgba(255, 255, 255, 0.2) 34%, transparent 48%),
    linear-gradient(145deg, rgba(86, 125, 138, 0.72), rgba(13, 21, 29, 0.94) 55%, rgba(79, 122, 134, 0.74));
  box-shadow:
    inset 0 0 25px rgba(158, 226, 238, 0.12),
    0 22px 48px rgba(0, 0, 0, 0.48),
    0 0 35px rgba(130, 215, 232, 0.12);
  transition: transform 1.1s cubic-bezier(0.18, 0.88, 0.27, 1.35), opacity 0.9s ease;
}

.artifact-box::after,
.artifact-lid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(216, 246, 250, 0.12), transparent);
  transform: translateX(-100%);
  animation: shimmer 5.5s ease-in-out infinite;
}

.artifact-box {
  bottom: 0;
  height: 137px;
  border-radius: 4px 4px 13px 13px;
}

.artifact-lid {
  top: 0;
  height: 49px;
  border-radius: 10px 10px 3px 3px;
  background:
    linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.22) 37%, transparent 55%),
    linear-gradient(145deg, #607d86, #101922 58%, #52727b);
}

.ribbon {
  position: absolute;
  z-index: 3;
  left: 50%;
  display: block;
  width: 24px;
  height: 100%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #6b8790, #def6f9 48%, #668089);
  box-shadow: 0 0 13px rgba(190, 240, 247, 0.25);
}

.seal {
  position: absolute;
  z-index: 5;
  top: 43px;
  left: 50%;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  transform: translateX(-50%);
  border: 1px solid rgba(229, 249, 252, 0.6);
  border-radius: 50%;
  color: #e8f8fa;
  background: linear-gradient(145deg, #6d8b94, #152029);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.44), 0 0 20px rgba(182, 237, 245, 0.22);
  font-style: normal;
}

.seal img {
  display: block;
  width: auto;
  height: 29px;
  filter: drop-shadow(0 0 6px rgba(230, 251, 255, 0.3));
}

.artifact-light {
  position: absolute;
  z-index: -1;
  top: 47px;
  left: 50%;
  width: 40px;
  height: 30px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #c7f6ff;
  filter: blur(18px);
  opacity: 0.25;
  transition: width 1.2s ease, height 1.2s ease, opacity 0.4s ease, filter 1.2s ease;
}

.open-label {
  position: absolute;
  bottom: 2px;
  left: 50%;
  display: flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
  font-family: var(--font-geist-mono), monospace;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(218, 239, 244, 0.72);
  transition: opacity 0.4s ease;
}

.open-label i {
  width: 5px;
  height: 5px;
  transform: rotate(45deg);
  border: 1px solid rgba(178, 229, 239, 0.55);
}

.reveal-copy {
  z-index: 8;
  opacity: 0;
  pointer-events: none;
  transform: translateY(28px) scale(0.97);
  filter: blur(14px);
  transition: opacity 1.2s ease 0.2s, transform 1.3s cubic-bezier(0.2, 0.8, 0.2, 1) 0.2s, filter 1.2s ease 0.2s;
}

.reveal-gallery {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.8s ease 0.25s;
}

.reveal-gallery::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 46%, rgba(3, 6, 10, 0.96) 0%, rgba(3, 6, 10, 0.76) 27%, rgba(3, 6, 10, 0.24) 60%, rgba(3, 6, 10, 0.72) 100%),
    linear-gradient(180deg, rgba(2, 4, 7, 0.18), rgba(2, 4, 7, 0.56));
}

.app-glimpse {
  position: absolute;
  width: clamp(210px, 25vw, 390px);
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(180, 230, 239, 0.13);
  border-radius: 18px;
  opacity: 0;
  filter: saturate(0.72) brightness(0.62) blur(0.4px);
  box-shadow: 0 25px 90px rgba(0, 0, 0, 0.7), 0 0 55px rgba(96, 194, 214, 0.09);
  transform: translateY(28px) scale(0.92);
  transition: opacity 1.3s ease, transform 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.app-glimpse::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(208, 245, 250, 0.09), transparent 36%, rgba(3, 6, 10, 0.44));
}

.app-glimpse img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.glimpse-one {
  top: 15%;
  left: -3%;
  transform: translateY(28px) rotate(-6deg) scale(0.92);
}

.glimpse-two {
  top: 9%;
  right: -4%;
  transform: translateY(28px) rotate(5deg) scale(0.92);
}

.glimpse-three {
  bottom: 7%;
  left: 4%;
  transform: translateY(28px) rotate(4deg) scale(0.92);
}

.glimpse-four {
  right: 4%;
  bottom: 6%;
  transform: translateY(28px) rotate(-5deg) scale(0.92);
}

.glimpse-five {
  bottom: -10%;
  left: 50%;
  width: clamp(240px, 29vw, 440px);
  transform: translate(-50%, 28px) rotate(1deg) scale(0.92);
}

.app-identity {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin: 0 0 17px;
  color: rgba(168, 226, 237, 0.58);
  font-family: var(--font-geist-mono), monospace;
  font-size: 9px;
  letter-spacing: 0.29em;
}

.app-identity span {
  width: 18px;
  height: 1px;
  background: rgba(158, 219, 231, 0.3);
}

.reveal-kicker {
  margin: 0 0 19px;
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.42em;
  color: rgba(173, 226, 238, 0.68);
}

.reveal-copy h2 {
  margin: 0;
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(54px, 7.5vw, 108px);
  font-weight: 400;
  line-height: 0.83;
  letter-spacing: -0.04em;
}

.reveal-copy h2 span {
  color: #b8e7ef;
  font-style: italic;
  text-shadow: 0 0 35px rgba(125, 218, 235, 0.25);
}

.reveal-note {
  max-width: 520px;
  margin: 28px auto 0;
  color: rgba(227, 235, 236, 0.62);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.58;
}

.download-button {
  position: relative;
  display: inline-flex;
  min-width: 230px;
  cursor: pointer;
  align-items: center;
  justify-content: space-between;
  margin-top: 34px;
  padding: 16px 18px 16px 25px;
  border: 1px solid rgba(178, 231, 241, 0.38);
  border-radius: 999px;
  color: #ecfbfd;
  background: linear-gradient(110deg, rgba(121, 197, 213, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: inset 0 0 25px rgba(155, 231, 242, 0.05), 0 12px 40px rgba(0, 0, 0, 0.3);
  font-family: var(--font-geist-mono), monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.download-button i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #0a1418;
  background: #bcebf2;
  font-size: 17px;
  font-style: normal;
}

.download-button:hover {
  transform: translateY(-3px);
  border-color: rgba(190, 242, 250, 0.7);
  background: linear-gradient(110deg, rgba(121, 197, 213, 0.23), rgba(255, 255, 255, 0.05));
}

.signature {
  margin: 22px 0 0;
  color: rgba(236, 244, 245, 0.42);
  font-family: var(--font-cormorant), Georgia, serif;
  font-size: 17px;
  font-style: italic;
  letter-spacing: 0.07em;
}

.sparks {
  position: absolute;
  z-index: 7;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.sparks i {
  position: absolute;
  width: var(--spark-size);
  height: var(--spark-size);
  border-radius: 50%;
  opacity: 0;
  background: #d9fbff;
  box-shadow: 0 0 10px #8eeeff;
}

.opening-title {
  position: absolute;
  inset: 0;
  z-index: 15;
  display: flex;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

.opening-title img {
  width: auto;
  height: clamp(150px, 31vh, 310px);
  opacity: 0;
  transform: translateY(25px) scale(0.82);
  filter: drop-shadow(0 0 70px rgba(156, 232, 245, 0.55));
}

.footer-line {
  position: absolute;
  right: clamp(22px, 5vw, 78px);
  bottom: clamp(20px, 3vw, 38px);
  left: clamp(22px, 5vw, 78px);
  z-index: 25;
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(216, 232, 235, 0.33);
  font-family: var(--font-geist-mono), monospace;
  font-size: 10px;
  letter-spacing: 0.25em;
}

.footer-line i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(202, 228, 234, 0.13), transparent);
}

.footer-line p {
  margin: 0;
}

/* Opening sequence */
.stage-opening .sealed-copy {
  opacity: 0;
  transform: translateY(-30px) scale(0.96);
  filter: blur(10px);
}

.stage-opening .open-label {
  opacity: 0;
}

.stage-opening .artifact {
  animation: artifact-open 2.4s cubic-bezier(0.24, 0.75, 0.22, 1) forwards;
}

.stage-opening .artifact-lid {
  transform: translateY(-115px) rotateX(36deg) rotateZ(5deg);
  opacity: 0;
}

.stage-opening .artifact-box {
  transform: translateY(36px) scale(1.18);
  opacity: 0;
}

.stage-opening .artifact-light {
  width: 460px;
  height: 460px;
  opacity: 1;
  filter: blur(45px);
}

.stage-opening .sparks i {
  animation: spark-out 1.65s cubic-bezier(0.1, 0.7, 0.1, 1) var(--spark-delay) forwards;
}

.stage-opening .opening-title {
  animation: title-shell 1.55s ease 0.45s both;
}

.stage-opening .opening-title img {
  animation: title-letter 1.2s cubic-bezier(0.15, 0.75, 0.2, 1) 0.5s both;
}

.stage-opening .aurora {
  opacity: 0.8;
  transform: scale(1.7);
}

.stage-opening::after {
  content: "";
  position: absolute;
  inset: -10%;
  z-index: 14;
  pointer-events: none;
  background: radial-gradient(circle, rgba(213, 250, 255, 0.95), rgba(89, 181, 203, 0.24) 28%, transparent 62%);
  animation: reveal-flash 2.3s ease both;
}

/* Revealed state */
.stage-revealed .sealed-copy,
.stage-revealed .gift-stage {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.2);
  transition: opacity 0.75s ease, transform 1s ease;
}

.stage-revealed .reveal-copy {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stage-revealed .reveal-gallery {
  opacity: 1;
}

.stage-revealed .app-glimpse {
  opacity: 0.46;
  transform: translateY(0) scale(1);
}

.stage-revealed .glimpse-one {
  transform: translateY(0) rotate(-6deg) scale(1);
  transition-delay: 0.28s;
}

.stage-revealed .glimpse-two {
  transform: translateY(0) rotate(5deg) scale(1);
  transition-delay: 0.4s;
}

.stage-revealed .glimpse-three {
  transform: translateY(0) rotate(4deg) scale(1);
  transition-delay: 0.52s;
}

.stage-revealed .glimpse-four {
  transform: translateY(0) rotate(-5deg) scale(1);
  transition-delay: 0.64s;
}

.stage-revealed .glimpse-five {
  opacity: 0.3;
  transform: translate(-50%, 0) rotate(1deg) scale(1);
  transition-delay: 0.76s;
}

.stage-revealed .aurora {
  opacity: 0.34;
  transform: scale(1.35);
}

.stage-revealed .star-field {
  opacity: 0.42;
}

@keyframes float {
  0%, 100% { transform: rotateX(-5deg) rotateY(-7deg) translateY(0); }
  50% { transform: rotateX(-2deg) rotateY(3deg) translateY(-12px); }
}

@keyframes orbit {
  to { transform: rotateX(68deg) rotateZ(360deg); }
}

@keyframes twinkle {
  0%, 100% { opacity: 0.14; transform: scale(0.7); }
  50% { opacity: 0.85; transform: scale(1.3); }
}

@keyframes breathe {
  0%, 100% { opacity: 0.5; transform: scale(0.82); }
  50% { opacity: 0.95; transform: scale(1.15); }
}

@keyframes shimmer {
  0%, 58% { transform: translateX(-130%); }
  78%, 100% { transform: translateX(130%); }
}

@keyframes halo {
  0%, 100% { opacity: 0.45; transform: scale(0.88); }
  50% { opacity: 1; transform: scale(1.05); }
}

@keyframes grain {
  0% { transform: translate(0, 0); }
  25% { transform: translate(2%, -3%); }
  50% { transform: translate(-2%, 2%); }
  75% { transform: translate(3%, 1%); }
  100% { transform: translate(-1%, -2%); }
}

@keyframes artifact-open {
  0% { transform: scale(1) rotateX(-5deg); filter: brightness(1); }
  28% { transform: scale(0.9) rotateX(-7deg); filter: brightness(1.2); }
  62% { transform: scale(1.16) rotateX(2deg); filter: brightness(2.1); }
  100% { transform: scale(1.8); filter: brightness(3); opacity: 0; }
}

@keyframes spark-out {
  0% { opacity: 0; transform: rotate(var(--spark-angle)) translateX(30px) scale(0.4); }
  20% { opacity: 1; }
  100% { opacity: 0; transform: rotate(var(--spark-angle)) translateX(var(--spark-distance)) scale(1.2); }
}

@keyframes reveal-flash {
  0% { opacity: 0; transform: scale(0.4); }
  45% { opacity: 0.38; }
  100% { opacity: 0; transform: scale(1.45); }
}

@keyframes title-shell {
  0%, 100% { opacity: 0; }
  28%, 65% { opacity: 0.82; }
}

@keyframes title-letter {
  0% { opacity: 0; transform: translateY(25px) scale(0.82); filter: blur(14px); }
  35%, 70% { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
  100% { opacity: 0; transform: translateY(-12px) scale(1.05); filter: blur(8px); }
}

@media (max-width: 720px) {
  .topbar {
    justify-content: center;
  }

  .sealed-copy {
    top: 112px;
  }

  .sealed-copy h1 {
    font-size: clamp(44px, 12.5vw, 64px);
  }

  .intro {
    margin-top: 16px;
    font-size: 17px;
  }

  .gift-stage {
    width: 100vw;
    height: 58vh;
    transform: translateY(92px);
  }

  .orbit-large {
    width: 420px;
    height: 420px;
  }

  .orbit-small {
    width: 300px;
    height: 300px;
  }

  .artifact {
    transform: scale(0.88);
  }

  .reveal-copy h2 {
    font-size: clamp(50px, 15vw, 74px);
    line-height: 0.89;
  }

  .reveal-note {
    max-width: 340px;
    font-size: 17px;
  }

  .app-identity {
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
    font-size: 8px;
    line-height: 1.5;
  }

  .app-glimpse {
    width: 52vw;
    border-radius: 12px;
  }

  .glimpse-one {
    top: 7%;
    left: -22%;
  }

  .glimpse-two {
    top: 10%;
    right: -24%;
  }

  .glimpse-three {
    bottom: 9%;
    left: -25%;
  }

  .glimpse-four {
    right: -25%;
    bottom: 8%;
  }

  .glimpse-five {
    bottom: -3%;
    width: 58vw;
  }

  .footer-line {
    justify-content: center;
  }

  .footer-line i,
  .footer-line span {
    display: none;
  }
}

@media (max-height: 760px) and (min-width: 721px) {
  .sealed-copy {
    top: 84px;
  }

  .intro {
    display: none;
  }

  .gift-stage {
    transform: translate(var(--pointer-x), calc(var(--pointer-y) + 76px)) scale(0.82);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .film-grain {
    display: none;
  }
}
