:root {
  color-scheme: dark;
  --ink: #0f0f23;
  --ink-raised: #1b1b30;
  --ink-soft: #24243f;
  --lacquer: #c70e28;
  --lacquer-deep: #780719;
  --lacquer-bright: #f12247;
  --gold: #ffc94a;
  --gold-soft: #ffe59b;
  --gold-deep: #b76b0f;
  --pink: #ec4899;
  --pink-hot: #ff3f9a;
  --cream: #fff9e8;
  --text: #fffdf6;
  --text-muted: #cac9df;
  --line: rgb(255 214 111 / 24%);
  --focus: #fff2a8;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snap: cubic-bezier(0.2, 0.9, 0.25, 1.25);
  --shadow-card: 0 24px 70px rgb(0 0 0 / 48%);
  --shadow-gold: 0 0 28px rgb(255 201 74 / 40%);
  font-family: "Trebuchet MS", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-tap-highlight-color: transparent;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--ink);
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 11% 15%, rgb(199 14 40 / 18%), transparent 34%),
    radial-gradient(circle at 88% 22%, rgb(236 72 153 / 14%), transparent 29%),
    linear-gradient(145deg, #0f0f23 0%, #17172b 45%, #100d1d 100%);
  color: var(--text);
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background-image:
    linear-gradient(rgb(255 255 255 / 2%) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 2%) 1px, transparent 1px);
  background-size: 36px 36px;
  content: "";
  mask-image: linear-gradient(to bottom, rgb(0 0 0 / 65%), transparent 88%);
  pointer-events: none;
}

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

button {
  color: inherit;
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

[hidden] {
  display: none !important;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: max(8px, env(safe-area-inset-top));
  left: max(8px, env(safe-area-inset-left));
  min-height: 44px;
  padding: 12px 16px;
  border: 2px solid var(--focus);
  border-radius: 10px;
  background: var(--ink);
  color: var(--cream);
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  width: min(100%, 1180px);
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  margin-inline: auto;
  padding-block: max(10px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-bottom));
  padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  overflow-x: hidden;
}

.topbar {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 48px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: clamp(8px, 2vw, 18px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  filter: drop-shadow(0 5px 12px rgb(0 0 0 / 45%));
}

.brand-mark svg {
  color: var(--gold);
  fill: rgb(199 14 40 / 88%);
  stroke-width: 2;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy b {
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 1.42rem;
  font-style: italic;
  letter-spacing: 0.08em;
  text-shadow: 0 2px 0 var(--lacquer-deep), 0 0 18px rgb(255 201 74 / 26%);
}

.brand-copy small {
  margin-top: 4px;
  color: var(--gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.24em;
}

.sound-toggle {
  display: inline-flex;
  min-width: 106px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 999px;
  background: linear-gradient(180deg, rgb(36 36 63 / 92%), rgb(18 18 37 / 92%));
  box-shadow: inset 0 1px rgb(255 255 255 / 7%), 0 8px 24px rgb(0 0 0 / 24%);
  color: var(--cream);
  cursor: pointer;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  touch-action: manipulation;
  transition: border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.sound-toggle:hover {
  border-color: rgb(255 201 74 / 58%);
}

.sound-toggle:active {
  background: var(--ink-soft);
  opacity: 0.82;
}

.sound-toggle:focus-visible,
.gift-box:focus-visible,
.gift-open-button:focus-visible,
.final-cta:focus-visible,
.browser-fallback:focus-visible,
.copy-destination:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
}

.sound-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  color: var(--gold);
}

.sound-muted {
  display: none;
}

.sound-toggle.is-muted .sound-waves {
  display: none;
}

.sound-toggle.is-muted .sound-muted {
  display: block;
}

.sound-toggle.is-muted {
  color: var(--text-muted);
}

.hero-layout {
  position: relative;
  display: grid;
  min-width: 0;
  align-items: center;
  gap: clamp(14px, 4vw, 48px);
}

.hero-layout::before {
  position: absolute;
  z-index: -1;
  top: 3%;
  left: -23%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(199 14 40 / 18%), transparent 69%);
  content: "";
  filter: blur(12px);
  pointer-events: none;
}

.hero-copy {
  min-width: 0;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 7px;
  margin: 0 0 8px;
  padding: 5px 10px;
  border: 1px solid rgb(255 201 74 / 35%);
  border-radius: 999px;
  background: rgb(255 201 74 / 7%);
  color: var(--gold-soft);
  font-size: clamp(0.62rem, 2.6vw, 0.72rem);
  font-weight: 900;
  letter-spacing: 0.1em;
}

.eyebrow svg {
  width: 15px;
  height: 15px;
  fill: rgb(255 201 74 / 18%);
}

h1,
h2,
p {
  overflow-wrap: anywhere;
}

h1 {
  display: grid;
  margin: 0;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(2rem, 10.5vw, 4.9rem);
  font-style: italic;
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}

h1 span {
  color: var(--cream);
  text-shadow: 0 4px 0 rgb(0 0 0 / 22%);
}

h1 strong {
  margin-top: 5px;
  background: linear-gradient(180deg, #fffbe6 2%, var(--gold) 45%, #e9951e 100%);
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 0 var(--lacquer-deep));
  -webkit-background-clip: text;
}

.hero-summary {
  width: min(100%, 520px);
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: clamp(0.82rem, 3.2vw, 1rem);
  line-height: 1.45;
}

.promo-showcase {
  position: relative;
  display: grid;
  width: min(100%, 520px);
  min-width: 0;
  max-width: 100%;
  gap: 5px;
  margin: 12px auto 0;
  padding: 8px;
  overflow: hidden;
  overflow-wrap: anywhere;
  border: 1px solid rgb(255 201 74 / 42%);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgb(255 201 74 / 11%), transparent 38%),
    linear-gradient(135deg, rgb(132 8 38 / 94%), rgb(58 14 73 / 96%));
  box-shadow:
    inset 0 1px rgb(255 255 255 / 11%),
    0 12px 32px rgb(0 0 0 / 28%),
    0 0 22px rgb(255 201 74 / 9%);
  isolation: isolate;
}

.promo-showcase::before {
  position: absolute;
  z-index: -1;
  inset: -60% -20%;
  background: linear-gradient(100deg, transparent 38%, rgb(255 255 255 / 13%) 49%, transparent 60%);
  content: "";
  transform: translateX(-55%) rotate(-8deg);
}

.verified-badge {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  justify-self: center;
  margin: 0;
  padding: 3px 8px;
  overflow-wrap: anywhere;
  border: 1px solid rgb(255 255 255 / 26%);
  border-radius: 999px;
  background: rgb(255 255 255 / 10%);
  color: #fff7db;
  font-size: clamp(0.5rem, 2.1vw, 0.61rem);
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1.15;
  text-align: center;
}

.trend-badge {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  min-height: 25px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 4px 8px;
  overflow-wrap: anywhere;
  border: 1px solid rgb(255 229 155 / 44%);
  border-radius: 999px;
  background: linear-gradient(90deg, rgb(255 201 74 / 14%), rgb(236 72 153 / 15%));
  color: #fff3c8;
  font-size: clamp(0.57rem, 2.45vw, 0.69rem);
  font-weight: 950;
  letter-spacing: 0.075em;
  line-height: 1.25;
  text-align: center;
  text-shadow: 0 1px 8px rgb(255 201 74 / 28%);
}

.max-win-banner {
  display: flex;
  width: 100%;
  min-width: 0;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  margin: 0;
  overflow-wrap: anywhere;
  text-align: center;
}

.max-win-banner strong {
  background: linear-gradient(180deg, #fff 0%, #fff1a8 36%, var(--gold) 72%, #ed9717 100%);
  background-clip: text;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.08rem, 5.1vw, 1.65rem);
  font-style: italic;
  letter-spacing: 0.045em;
  line-height: 1.05;
  filter: drop-shadow(0 3px 0 rgb(70 1 22 / 72%)) drop-shadow(0 0 12px rgb(255 201 74 / 28%));
  -webkit-background-clip: text;
}

.promo-terms {
  width: 100%;
  min-width: 0;
  max-width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
  color: #cbc9d9;
  font-size: clamp(0.47rem, 1.95vw, 0.56rem);
  font-weight: 750;
  letter-spacing: 0.025em;
  line-height: 1.3;
  text-align: center;
}

.reward-chip {
  display: inline-flex;
  min-width: min(100%, 242px);
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
  padding: 8px 15px;
  border: 1px solid rgb(255 201 74 / 45%);
  border-radius: 14px;
  background:
    linear-gradient(145deg, rgb(255 201 74 / 13%), rgb(199 14 40 / 16%)),
    rgb(27 27 48 / 82%);
  box-shadow: inset 0 1px rgb(255 255 255 / 9%), 0 10px 30px rgb(0 0 0 / 24%);
  text-align: left;
}

.reward-chip-icon {
  width: 29px;
  height: 29px;
  flex: 0 0 29px;
  color: var(--gold);
}

.reward-chip > span:last-child {
  display: grid;
}

.reward-chip small {
  color: var(--text-muted);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.reward-chip b {
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
  letter-spacing: 0.04em;
  line-height: 1.08;
}

.journey {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 13px;
  color: var(--text-muted);
  font-size: clamp(0.55rem, 2.2vw, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

.journey span {
  min-width: 0;
}

.journey b {
  color: var(--pink-hot);
}

.journey svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  color: var(--gold);
}

.age-disclosure {
  display: flex;
  min-height: 24px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 10px 0 0;
  color: #deddec;
  font-size: clamp(0.61rem, 2.6vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.06em;
}

.age-disclosure svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--gold);
}

.gift-card {
  position: relative;
  display: grid;
  min-width: 0;
  padding: clamp(8px, 2.6vw, 16px);
  overflow: hidden;
  border: 1px solid rgb(255 215 126 / 25%);
  border-radius: clamp(20px, 6vw, 30px);
  background:
    linear-gradient(155deg, rgb(255 255 255 / 8%), transparent 38%),
    linear-gradient(180deg, rgb(34 27 49 / 96%), rgb(17 15 33 / 98%));
  box-shadow: var(--shadow-card), inset 0 1px rgb(255 255 255 / 8%);
  isolation: isolate;
}

.gift-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at 50% 32%, rgb(255 201 74 / 16%), transparent 42%),
    radial-gradient(circle at 84% 14%, rgb(236 72 153 / 16%), transparent 24%);
  content: "";
  pointer-events: none;
}

.card-glow {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -24%;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(199 14 40 / 22%);
  filter: blur(36px);
}

.gift-stage {
  position: relative;
  display: grid;
  width: 100%;
  min-width: 0;
  min-height: 238px;
  max-height: 330px;
  aspect-ratio: 1.13;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgb(255 201 74 / 18%);
  border-radius: clamp(16px, 5vw, 24px);
  background:
    linear-gradient(180deg, rgb(13 12 30 / 24%), rgb(11 9 25 / 74%)),
    radial-gradient(circle at 50% 44%, rgb(255 67 134 / 18%), transparent 45%);
  isolation: isolate;
  perspective: 900px;
}

.gift-stage::before {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: min(68%, 230px);
  aspect-ratio: 1;
  border: 2px solid rgb(255 229 155 / 72%);
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 255 255 / 78%) 0 2%, rgb(255 201 74 / 25%) 18%, transparent 65%);
  box-shadow: 0 0 28px rgb(255 201 74 / 48%), inset 0 0 28px rgb(236 72 153 / 26%);
  content: "";
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  pointer-events: none;
}

.gift-stage[data-phase="opening"]::before {
  animation: gift-stage-charge 1120ms var(--ease-out) both;
}

.gift-stage::after {
  position: absolute;
  z-index: -1;
  right: 8%;
  bottom: 6%;
  left: 8%;
  height: 15%;
  border-radius: 50%;
  background: rgb(0 0 0 / 48%);
  content: "";
  filter: blur(16px);
}

.stage-backdrop,
.stage-backdrop::before,
.stage-backdrop::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.stage-backdrop::before {
  background: repeating-conic-gradient(from 10deg at 50% 52%, rgb(255 201 74 / 10%) 0 4deg, transparent 4deg 18deg);
  content: "";
  mask-image: radial-gradient(circle, #000 0 24%, transparent 67%);
}

.stage-backdrop::after {
  inset: auto 7% 7%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 201 74 / 48%), transparent);
  content: "";
  box-shadow: 0 -28px 70px rgb(255 201 74 / 28%);
}

.halo {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgb(255 201 74 / 24%);
  border-radius: 50%;
  transform: translate(-50%, -50%) rotateX(66deg);
}

.halo-one {
  width: 78%;
  height: 78%;
  box-shadow: inset 0 0 34px rgb(255 201 74 / 9%);
}

.halo-two {
  width: 58%;
  height: 58%;
  border-color: rgb(236 72 153 / 29%);
}

.stage-star {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-soft);
  box-shadow: 0 0 10px var(--gold);
}

.stage-star-one {
  top: 17%;
  left: 17%;
}

.stage-star-two {
  top: 26%;
  right: 14%;
  width: 3px;
  height: 3px;
}

.stage-star-three {
  right: 21%;
  bottom: 23%;
}

.stage-star-four {
  bottom: 30%;
  left: 11%;
  width: 3px;
  height: 3px;
}

.gift-box {
  position: relative;
  z-index: 1;
  display: block;
  width: min(82%, 290px);
  min-width: 0;
  min-height: 44px;
  aspect-ratio: 1;
  padding: 0;
  border: 0;
  appearance: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: inherit;
  touch-action: manipulation;
  transform: translateZ(0);
  transform-origin: 50% 82%;
  animation: gift-arrive 760ms var(--ease-out) both;
  filter: drop-shadow(0 20px 25px rgb(0 0 0 / 48%));
  will-change: transform, filter;
}

.gift-box:not(:disabled):hover {
  filter: drop-shadow(0 22px 28px rgb(0 0 0 / 48%)) drop-shadow(0 0 19px rgb(255 201 74 / 34%)) brightness(1.06);
}

.gift-box:not(:disabled):active {
  filter: drop-shadow(0 12px 18px rgb(0 0 0 / 42%)) brightness(0.9);
}

.gift-box:not(:disabled):active .gift-art {
  transform: scale(0.97);
}

.gift-box:disabled {
  cursor: wait;
}

.gift-shadow {
  position: absolute;
  z-index: -1;
  right: 10%;
  bottom: 5%;
  left: 10%;
  height: 14%;
  border-radius: 50%;
  background: rgb(0 0 0 / 72%);
  filter: blur(12px);
}

.gift-art {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  transition: opacity 240ms ease, transform 620ms var(--ease-out), filter 420ms ease;
}

.gift-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gift-body-art {
  clip-path: inset(34% 3% 1% 3%);
}

.gift-lid-art {
  z-index: 2;
  clip-path: inset(2% 3% 51% 3%);
  transform-origin: 32% 49%;
}

.gift-art-open {
  z-index: 1;
  clip-path: inset(34% 3% 1% 3%);
  opacity: 0;
  transform: scale(0.76) translateY(12%);
  filter: brightness(1.8) blur(2px);
}

.gift-lid {
  position: absolute;
  z-index: 3;
  top: 25%;
  left: 18%;
  width: 64%;
  height: 18%;
  border: 1px solid rgb(255 238 169 / 30%);
  border-radius: 14px 14px 8px 8px;
  background:
    linear-gradient(90deg, transparent 42%, rgb(255 213 90 / 88%) 42% 58%, transparent 58%),
    linear-gradient(180deg, rgb(255 255 255 / 20%), transparent 32%),
    linear-gradient(135deg, var(--lacquer-bright), var(--lacquer-deep));
  box-shadow: inset 0 -5px 8px rgb(75 0 10 / 36%), 0 8px 13px rgb(0 0 0 / 25%);
  opacity: 0.26;
  transform-origin: 22% 100%;
  pointer-events: none;
}

.gift-ribbon {
  position: absolute;
  z-index: 2;
  display: block;
  border-radius: 999px;
  background: linear-gradient(90deg, #b66a12, var(--gold-soft), var(--gold), #9d570a);
  box-shadow: 0 0 12px rgb(255 201 74 / 36%);
  opacity: 0.2;
  pointer-events: none;
}

.gift-ribbon-vertical {
  top: 24%;
  bottom: 14%;
  left: 46%;
  width: 8%;
}

.gift-ribbon-horizontal {
  top: 43%;
  right: 17%;
  left: 17%;
  height: 7%;
}

.gift-lock {
  position: absolute;
  z-index: 4;
  top: 43%;
  left: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgb(255 246 194 / 66%);
  border-radius: 50%;
  background: radial-gradient(circle at 34% 28%, #fff6bd, var(--gold) 42%, var(--gold-deep) 100%);
  box-shadow: var(--shadow-gold), inset 0 0 0 3px rgb(116 56 3 / 24%);
  color: #7b3108;
  opacity: 0.78;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, transform 320ms var(--ease-snap);
  pointer-events: none;
}

.gift-lock svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.9;
}

.gift-flare {
  position: absolute;
  z-index: 5;
  top: 50%;
  left: 50%;
  width: 12%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 18px 7px var(--gold), 0 0 80px 35px var(--pink-hot);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
  pointer-events: none;
}

.gift-open-label {
  position: absolute;
  z-index: 5;
  bottom: 8px;
  left: 50%;
  min-width: 118px;
  padding: 5px 11px;
  border: 1px solid rgb(255 201 74 / 35%);
  border-radius: 999px;
  background: rgb(11 9 25 / 78%);
  box-shadow: 0 5px 20px rgb(0 0 0 / 28%);
  color: var(--gold-soft);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}

.gift-experience.is-opening .gift-box,
.gift-box.is-opening {
  animation: gift-shake 860ms cubic-bezier(0.33, 0, 0.2, 1) both;
}

.gift-experience.is-opening .gift-lid,
.gift-box.is-opening .gift-lid {
  animation: lid-charge 860ms ease both;
}

.gift-experience.is-opening .gift-lid-art,
.gift-box.is-opening .gift-lid-art {
  animation: lid-art-open 860ms var(--ease-out) both;
}

.gift-experience.is-opening .gift-flare,
.gift-box.is-opening .gift-flare {
  animation: burst-charge 860ms ease-out both;
}

.gift-stage[data-phase="opening"] .stage-backdrop::before {
  animation: burst-spin 860ms linear both;
}

.gift-experience.is-revealed .gift-lid-art,
.gift-box.is-revealed .gift-lid-art {
  opacity: 0;
  transform: translate(-14%, -38%) rotate(-18deg) scale(1.1);
  filter: brightness(2);
}

.gift-experience.is-revealed .gift-art-open,
.gift-box.is-revealed .gift-art-open {
  opacity: 1;
  transform: scale(1.08) translateY(-2%);
  filter: brightness(1.1) drop-shadow(0 0 28px rgb(255 201 74 / 70%));
}

.gift-experience.is-revealed .gift-lid,
.gift-experience.is-revealed .gift-ribbon,
.gift-experience.is-revealed .gift-lock,
.gift-box.is-revealed .gift-lid,
.gift-box.is-revealed .gift-ribbon,
.gift-box.is-revealed .gift-lock {
  opacity: 0;
}

.gift-experience.is-revealed .gift-lock,
.gift-box.is-revealed .gift-lock {
  transform: translate(-50%, -50%) scale(1.8);
}

.gift-controls {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: 10px 2px 1px;
}

.gift-heading {
  text-align: center;
}

.gift-heading span {
  color: var(--pink-hot);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.2em;
}

.gift-heading h2 {
  margin: 2px 0 0;
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.05rem, 4.7vw, 1.55rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.05em;
  line-height: 1;
}

.gift-status {
  min-height: 18px;
  margin: 7px 0;
  color: var(--gold-soft);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: center;
}

.gift-open-button {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 62px;
  grid-template-columns: 36px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  overflow: hidden;
  border: 1px solid rgb(255 235 155 / 68%);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 18%), transparent 38%),
    linear-gradient(100deg, var(--lacquer-deep), var(--lacquer) 42%, var(--pink-hot) 120%);
  box-shadow:
    inset 0 -5px 0 rgb(89 0 18 / 38%),
    inset 0 1px rgb(255 255 255 / 23%),
    0 10px 25px rgb(199 14 40 / 34%),
    0 0 0 1px rgb(255 201 74 / 12%);
  color: var(--cream);
  cursor: pointer;
  text-align: left;
  text-shadow: 0 1px 1px rgb(0 0 0 / 30%);
  touch-action: manipulation;
  transition: filter 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.gift-open-button::after {
  position: absolute;
  top: -70%;
  left: -30%;
  width: 22%;
  height: 240%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 32%), transparent);
  content: "";
  opacity: 0;
  transform: rotate(18deg);
  transition: left 480ms var(--ease-out), opacity 180ms ease;
  pointer-events: none;
}

.gift-open-button:hover {
  filter: brightness(1.12);
  box-shadow:
    inset 0 -5px 0 rgb(89 0 18 / 38%),
    inset 0 1px rgb(255 255 255 / 28%),
    0 12px 32px rgb(236 72 153 / 37%),
    0 0 22px rgb(255 201 74 / 17%);
}

.gift-open-button:hover::after {
  left: 110%;
  opacity: 1;
}

.gift-open-button:active {
  filter: brightness(0.9);
  opacity: 0.9;
}

.gift-open-button:disabled {
  cursor: wait;
  filter: saturate(0.75);
  opacity: 0.7;
}

.button-gift-icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 22%);
  border-radius: 10px;
  background: rgb(255 201 74 / 13%);
  color: var(--gold-soft);
}

.button-gift-icon svg {
  width: 23px;
  height: 23px;
}

.gift-open-button > span:nth-child(2) {
  display: grid;
  min-width: 0;
}

.gift-open-button strong {
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(0.98rem, 4.4vw, 1.24rem);
  font-style: italic;
  letter-spacing: 0.035em;
  line-height: 1.1;
}

.gift-open-button small {
  margin-top: 3px;
  color: #ffe9bd;
  font-size: clamp(0.52rem, 2.1vw, 0.62rem);
  font-weight: 800;
  letter-spacing: 0.055em;
  line-height: 1.15;
}

.button-arrow {
  width: 22px;
  height: 22px;
  color: var(--gold-soft);
  stroke-width: 2.4;
}

.benefit-strip {
  display: grid;
  min-width: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: clamp(10px, 2.5vw, 18px);
  padding: 9px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 15px;
  background: rgb(27 27 48 / 64%);
  box-shadow: inset 0 1px rgb(255 255 255 / 5%);
}

.benefit-strip span {
  display: flex;
  min-width: 0;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  color: #deddec;
  font-size: clamp(0.57rem, 2.4vw, 0.7rem);
  font-weight: 800;
  line-height: 1.2;
  text-align: center;
}

.benefit-strip span + span {
  border-left: 1px solid rgb(255 255 255 / 10%);
}

.benefit-strip svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--gold);
}

.game-catalog {
  min-width: 0;
  margin-top: clamp(9px, 2.4vw, 16px);
  padding: clamp(13px, 3vw, 19px);
  overflow: hidden;
  border: 1px solid rgb(255 201 74 / 30%);
  border-radius: 17px;
  background:
    radial-gradient(circle at 8% 0%, rgb(241 34 71 / 17%), transparent 42%),
    radial-gradient(circle at 100% 100%, rgb(236 72 153 / 12%), transparent 43%),
    linear-gradient(145deg, rgb(36 36 63 / 88%), rgb(20 17 36 / 94%));
  box-shadow:
    inset 0 1px rgb(255 255 255 / 7%),
    0 14px 34px rgb(0 0 0 / 24%);
  text-align: center;
}

.game-catalog h2 {
  margin: 0;
  color: var(--gold-soft);
  font-size: clamp(0.9rem, 3.5vw, 1.12rem);
  letter-spacing: 0.075em;
  line-height: 1.25;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.game-catalog-intro {
  max-width: 36rem;
  margin: 5px auto 0;
  color: var(--text-muted);
  font-size: clamp(0.75rem, 2.8vw, 0.85rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.game-catalog-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(6px, 1.8vw, 11px);
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}

.game-catalog-list li {
  min-width: 0;
}

.game-cover-card {
  height: 100%;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgb(255 214 111 / 21%);
  border-radius: clamp(9px, 2vw, 14px);
  background: linear-gradient(155deg, rgb(40 36 65 / 96%), rgb(12 12 29 / 98%));
  box-shadow:
    inset 0 1px rgb(255 255 255 / 8%),
    0 8px 18px rgb(0 0 0 / 24%);
}

.game-cover-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: rgb(12 12 29 / 92%);
}

.game-cover-media::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 9%);
  background: linear-gradient(180deg, transparent 63%, rgb(8 7 20 / 42%));
  content: "";
  pointer-events: none;
}

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

.game-cover-card figcaption {
  display: flex;
  min-height: clamp(32px, 7.5vw, 43px);
  align-items: center;
  justify-content: center;
  padding: clamp(5px, 1.5vw, 8px);
  color: var(--cream);
  font-size: clamp(0.54rem, 2vw, 0.72rem);
  font-weight: 800;
  letter-spacing: 0.018em;
  line-height: 1.2;
  overflow-wrap: anywhere;
  text-align: center;
  text-wrap: balance;
}

.game-catalog-more {
  margin: 8px 0 0;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.35;
}

.compliance {
  margin-top: 10px;
  color: #aeadc6;
  font-size: 0.62rem;
  line-height: 1.35;
  text-align: center;
}

.compliance p {
  margin: 2px 0;
}

.compliance strong {
  color: #deddec;
  letter-spacing: 0.06em;
}

.reveal-overlay {
  position: fixed;
  z-index: 80;
  inset: 0;
  display: flex;
  min-height: 100%;
  align-items: center;
  justify-content: center;
  padding-block: max(14px, env(safe-area-inset-top)) max(14px, env(safe-area-inset-bottom));
  padding-inline: max(12px, env(safe-area-inset-left)) max(12px, env(safe-area-inset-right));
  overflow-x: hidden;
  overflow-y: auto;
  background:
    radial-gradient(circle at 50% 40%, rgb(236 72 153 / 25%), transparent 45%),
    rgb(8 7 19 / 92%);
  backdrop-filter: blur(10px);
  isolation: isolate;
  overscroll-behavior: contain;
}

.reveal-effects {
  position: fixed;
  z-index: 0;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.reveal-screen-flash {
  position: absolute;
  inset: 0;
  background: #fff9dc;
  opacity: 0;
}

.reveal-overlay.is-visible .reveal-screen-flash,
.reveal-overlay[aria-hidden="false"] .reveal-screen-flash,
body.is-revealed .reveal-screen-flash {
  animation: screen-flash 760ms ease-out both;
}

.reveal-impact {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76vmin, 560px);
  aspect-ratio: 1;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.08) rotate(-20deg);
}

.reveal-impact::before,
.reveal-impact::after,
.reveal-impact span {
  position: absolute;
  inset: 0;
  content: "";
}

.reveal-impact::before {
  background: repeating-conic-gradient(from 7deg, rgb(255 255 255 / 92%) 0 1.5deg, rgb(255 201 74 / 74%) 1.5deg 4deg, transparent 4deg 14deg);
  clip-path: polygon(50% 0, 57% 35%, 82% 7%, 68% 39%, 100% 50%, 66% 58%, 92% 88%, 58% 67%, 50% 100%, 42% 67%, 8% 88%, 34% 58%, 0 50%, 32% 40%, 18% 7%, 43% 35%);
  filter: drop-shadow(0 0 18px rgb(255 201 74 / 90%));
}

.reveal-impact::after {
  inset: 24%;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 8%, #fff4b2 16%, var(--gold) 36%, rgb(236 72 153 / 66%) 58%, transparent 72%);
  box-shadow: 0 0 35px #fff, 0 0 90px var(--gold), 0 0 150px var(--pink-hot);
}

.reveal-impact span {
  inset: 39%;
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 26px 8px var(--gold);
}

.reveal-overlay.is-visible .reveal-impact,
.reveal-overlay[aria-hidden="false"] .reveal-impact,
body.is-revealed .reveal-impact {
  animation: impact-core-burst 1550ms var(--ease-out) both;
}

.reveal-shockwave {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 120px;
  height: 72px;
  border: 4px solid rgb(255 242 183 / 94%);
  border-radius: 50%;
  box-shadow: 0 0 22px rgb(255 201 74 / 85%), inset 0 0 18px rgb(236 72 153 / 48%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.12);
}

.reveal-overlay.is-visible .reveal-shockwave-one,
.reveal-overlay[aria-hidden="false"] .reveal-shockwave-one,
body.is-revealed .reveal-shockwave-one {
  animation: shockwave-burst 1250ms ease-out 80ms both;
}

.reveal-overlay.is-visible .reveal-shockwave-two,
.reveal-overlay[aria-hidden="false"] .reveal-shockwave-two,
body.is-revealed .reveal-shockwave-two {
  animation: shockwave-burst 1550ms ease-out 210ms both;
}

.reveal-overlay.is-visible .reveal-effects,
.reveal-overlay[aria-hidden="false"] .reveal-effects,
body.is-revealed .reveal-effects {
  animation: reveal-burst 1100ms ease-out both;
}

.reveal-flash {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(75vmin, 620px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0 2%, var(--gold-soft) 3% 7%, rgb(255 201 74 / 42%) 18%, transparent 63%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.08);
}

.reveal-overlay.is-visible .reveal-flash,
.reveal-overlay[aria-hidden="false"] .reveal-flash,
body.is-revealed .reveal-flash {
  animation: burst-flash 920ms ease-out both;
}

.reveal-rays {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(130vmax, 1400px);
  aspect-ratio: 1;
  background: repeating-conic-gradient(from 0deg, rgb(255 201 74 / 20%) 0 3deg, transparent 3deg 13deg);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(0deg) scale(0.3);
  mask-image: radial-gradient(circle, #000 0 7%, rgb(0 0 0 / 55%) 24%, transparent 66%);
}

.reveal-overlay.is-visible .reveal-rays,
.reveal-overlay[aria-hidden="false"] .reveal-rays,
body.is-revealed .reveal-rays {
  animation: burst-rays 1800ms var(--ease-out) both;
}

.reveal-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(70vmin, 520px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(255 236 156 / 18%), rgb(236 72 153 / 10%) 42%, transparent 72%);
  box-shadow: 0 0 90px rgb(255 201 74 / 24%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
}

.reveal-overlay.is-visible .reveal-orb,
.reveal-overlay[aria-hidden="false"] .reveal-orb,
body.is-revealed .reveal-orb {
  animation: reveal-orb 1300ms var(--ease-out) 80ms both;
}

.reveal-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100px;
  aspect-ratio: 1;
  border: 2px solid var(--gold-soft);
  border-radius: 50%;
  box-shadow: 0 0 20px rgb(255 201 74 / 50%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.2);
}

.reveal-overlay.is-visible .reveal-ring-one,
.reveal-overlay[aria-hidden="false"] .reveal-ring-one,
body.is-revealed .reveal-ring-one {
  animation: reveal-ring 1050ms ease-out 90ms both;
}

.reveal-overlay.is-visible .reveal-ring-two,
.reveal-overlay[aria-hidden="false"] .reveal-ring-two,
body.is-revealed .reveal-ring-two {
  animation: reveal-ring 1250ms ease-out 170ms both;
}

.reveal-overlay.is-visible .reveal-ring-three,
.reveal-overlay[aria-hidden="false"] .reveal-ring-three,
body.is-revealed .reveal-ring-three {
  animation: reveal-ring 1450ms ease-out 260ms both;
}

.gift-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.gift-particle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 13px;
  border-radius: 2px;
  background: hsl(var(--particle-hue, 43) 94% 58%);
  box-shadow: 0 0 9px hsl(var(--particle-hue, 43) 94% 58% / 55%);
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--particle-angle, 0deg));
  will-change: transform, opacity;
}

.gift-particle:nth-child(4n) {
  width: 6px;
  height: 10px;
}

.gift-particle:nth-child(5n) {
  width: 10px;
  height: 16px;
}

/* Particle vectors are deterministic CSS so the strict CSP never needs style attributes. */
.gift-particle:nth-child(24n + 1) { --particle-angle: 0deg; }
.gift-particle:nth-child(24n + 2) { --particle-angle: 15deg; }
.gift-particle:nth-child(24n + 3) { --particle-angle: 30deg; }
.gift-particle:nth-child(24n + 4) { --particle-angle: 45deg; }
.gift-particle:nth-child(24n + 5) { --particle-angle: 60deg; }
.gift-particle:nth-child(24n + 6) { --particle-angle: 75deg; }
.gift-particle:nth-child(24n + 7) { --particle-angle: 90deg; }
.gift-particle:nth-child(24n + 8) { --particle-angle: 105deg; }
.gift-particle:nth-child(24n + 9) { --particle-angle: 120deg; }
.gift-particle:nth-child(24n + 10) { --particle-angle: 135deg; }
.gift-particle:nth-child(24n + 11) { --particle-angle: 150deg; }
.gift-particle:nth-child(24n + 12) { --particle-angle: 165deg; }
.gift-particle:nth-child(24n + 13) { --particle-angle: 180deg; }
.gift-particle:nth-child(24n + 14) { --particle-angle: 195deg; }
.gift-particle:nth-child(24n + 15) { --particle-angle: 210deg; }
.gift-particle:nth-child(24n + 16) { --particle-angle: 225deg; }
.gift-particle:nth-child(24n + 17) { --particle-angle: 240deg; }
.gift-particle:nth-child(24n + 18) { --particle-angle: 255deg; }
.gift-particle:nth-child(24n + 19) { --particle-angle: 270deg; }
.gift-particle:nth-child(24n + 20) { --particle-angle: 285deg; }
.gift-particle:nth-child(24n + 21) { --particle-angle: 300deg; }
.gift-particle:nth-child(24n + 22) { --particle-angle: 315deg; }
.gift-particle:nth-child(24n + 23) { --particle-angle: 330deg; }
.gift-particle:nth-child(24n + 24) { --particle-angle: 345deg; }

.gift-particle:nth-child(7n + 1) { --particle-distance: 42vmin; }
.gift-particle:nth-child(7n + 2) { --particle-distance: 50vmin; }
.gift-particle:nth-child(7n + 3) { --particle-distance: 58vmin; }
.gift-particle:nth-child(7n + 4) { --particle-distance: 66vmin; }
.gift-particle:nth-child(7n + 5) { --particle-distance: 74vmin; }
.gift-particle:nth-child(7n + 6) { --particle-distance: 82vmin; }
.gift-particle:nth-child(7n + 7) { --particle-distance: 90vmin; }

.gift-particle:nth-child(9n + 1) { --particle-delay: 0ms; }
.gift-particle:nth-child(9n + 2) { --particle-delay: 19ms; }
.gift-particle:nth-child(9n + 3) { --particle-delay: 38ms; }
.gift-particle:nth-child(9n + 4) { --particle-delay: 57ms; }
.gift-particle:nth-child(9n + 5) { --particle-delay: 76ms; }
.gift-particle:nth-child(9n + 6) { --particle-delay: 95ms; }
.gift-particle:nth-child(9n + 7) { --particle-delay: 114ms; }
.gift-particle:nth-child(9n + 8) { --particle-delay: 133ms; }
.gift-particle:nth-child(9n + 9) { --particle-delay: 152ms; }

.gift-particle:nth-child(6n + 1) { --particle-hue: 42; }
.gift-particle:nth-child(6n + 2) { --particle-hue: 350; }
.gift-particle:nth-child(6n + 3) { --particle-hue: 325; }
.gift-particle:nth-child(6n + 4) { --particle-hue: 282; }
.gift-particle:nth-child(6n + 5) { --particle-hue: 24; }
.gift-particle:nth-child(6n + 6) { --particle-hue: 190; }

.reveal-overlay.is-visible .gift-particle,
.reveal-overlay[aria-hidden="false"] .gift-particle,
body.is-revealed .gift-particle {
  animation: confetti-burst 2200ms var(--ease-out) var(--particle-delay, 0ms) both;
}

.spark {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cream);
  box-shadow: 0 0 13px 3px var(--gold);
}

.coin {
  width: 12px;
  height: 12px;
  border: 1px solid var(--gold-soft);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fffbd5, var(--gold) 38%, var(--gold-deep) 100%);
  box-shadow: 0 0 9px rgb(255 201 74 / 55%);
}

.banknote {
  width: 19px;
  height: 11px;
  border: 1px solid #fff0a6;
  border-radius: 2px;
  background:
    linear-gradient(90deg, transparent 44%, rgb(255 255 255 / 62%) 44% 56%, transparent 56%),
    linear-gradient(135deg, #8d071b, var(--lacquer-bright) 52%, var(--gold-deep));
  box-shadow: 0 0 12px rgb(255 201 74 / 72%);
}

.banknote::after {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff8ca;
  content: "RP";
  font-family: Impact, "Arial Black", sans-serif;
  font-size: 5px;
  letter-spacing: 0.08em;
}

.confetti {
  border-radius: 2px;
}

.confetti:nth-child(3n) {
  border-radius: 999px;
}

.reveal-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 430px);
  max-width: 100%;
  min-width: 0;
  margin-block: auto;
  padding: clamp(20px, 6vw, 34px) clamp(14px, 5vw, 30px) clamp(16px, 5vw, 26px);
  overflow: hidden;
  overflow-wrap: anywhere;
  border: 1px solid rgb(255 223 133 / 42%);
  border-radius: clamp(22px, 7vw, 34px);
  background:
    linear-gradient(155deg, rgb(255 255 255 / 12%), transparent 34%),
    radial-gradient(circle at 50% 0%, rgb(236 72 153 / 24%), transparent 42%),
    linear-gradient(180deg, rgb(39 26 51 / 98%), rgb(16 14 31 / 99%));
  box-shadow:
    0 30px 90px rgb(0 0 0 / 70%),
    0 0 55px rgb(236 72 153 / 22%),
    inset 0 1px rgb(255 255 255 / 13%);
  text-align: center;
  transform: translateY(22px) scale(0.8);
  opacity: 0;
}

.reveal-panel::before {
  position: absolute;
  inset: 5px;
  border: 1px solid rgb(255 201 74 / 12%);
  border-radius: calc(clamp(22px, 7vw, 34px) - 5px);
  content: "";
  pointer-events: none;
}

.reveal-overlay.is-visible .reveal-panel,
.reveal-overlay[aria-hidden="false"] .reveal-panel,
body.is-revealed .reveal-panel {
  animation: reveal-panel 640ms var(--ease-snap) 120ms both;
}

.panel-crown {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--gold);
}

.panel-crown span {
  width: 50px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgb(255 201 74 / 55%));
}

.panel-crown span:last-child {
  background: linear-gradient(90deg, rgb(255 201 74 / 55%), transparent);
}

.panel-crown svg {
  width: 31px;
  height: 31px;
  fill: rgb(255 201 74 / 16%);
  filter: drop-shadow(0 0 9px rgb(255 201 74 / 45%));
}

.reveal-kicker {
  margin: 8px 0 4px;
  color: var(--gold-soft);
  font-size: clamp(0.62rem, 2.7vw, 0.74rem);
  font-weight: 900;
  letter-spacing: 0.17em;
}

.reveal-panel h2 {
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, var(--gold-soft) 30%, var(--gold) 65%, #d98411 100%);
  background-clip: text;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.45rem, 7vw, 2.35rem);
  font-style: italic;
  letter-spacing: 0.045em;
  line-height: 1;
  filter: drop-shadow(0 5px 0 var(--lacquer-deep)) drop-shadow(0 0 20px rgb(255 201 74 / 36%));
  -webkit-background-clip: text;
}

.reveal-promo {
  display: grid;
  width: min(100%, 390px);
  min-width: 0;
  max-width: 100%;
  gap: 4px;
  margin: 7px auto 0;
  padding: 6px 8px;
  overflow: hidden;
  overflow-wrap: anywhere;
  border: 1px solid rgb(255 224 141 / 28%);
  border-radius: 12px;
  background:
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 12%), transparent 55%),
    rgb(78 7 41 / 76%);
  box-shadow: inset 0 1px rgb(255 255 255 / 8%);
}

.reveal-promo .trend-badge {
  min-height: 21px;
  padding-block: 3px;
  font-size: clamp(0.5rem, 2.25vw, 0.61rem);
}

.reveal-promo > strong {
  background: linear-gradient(180deg, #fff 0%, #fff0a6 40%, var(--gold) 100%);
  background-clip: text;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(0.92rem, 4.45vw, 1.28rem);
  font-style: italic;
  letter-spacing: 0.045em;
  line-height: 1.05;
  filter: drop-shadow(0 2px 0 rgb(76 0 18 / 72%));
  -webkit-background-clip: text;
}

.reveal-promo-terms {
  color: #d6d3e1;
  font-size: clamp(0.43rem, 1.8vw, 0.51rem);
}

.reward-label {
  margin: 8px 0 0;
  color: #fff0bd;
  font-size: clamp(0.62rem, 2.8vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.13em;
}

.reward-amount {
  position: relative;
  display: inline-flex;
  width: min(100%, 370px);
  min-height: 94px;
  align-items: flex-start;
  justify-content: center;
  margin-top: 7px;
  padding: 10px 16px 8px;
  overflow: hidden;
  border: 2px solid rgb(255 238 169 / 86%);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgb(255 255 255 / 24%), transparent 48%),
    linear-gradient(115deg, rgb(111 4 22 / 98%), rgb(203 14 49 / 98%) 48%, rgb(113 7 82 / 98%));
  box-shadow:
    inset 0 0 0 3px rgb(255 201 74 / 15%),
    inset 0 -8px 16px rgb(70 0 20 / 45%),
    0 14px 42px rgb(0 0 0 / 45%),
    0 0 42px rgb(255 201 74 / 35%);
  color: var(--cream);
  isolation: isolate;
  filter: drop-shadow(0 0 18px rgb(236 72 153 / 44%));
  opacity: 0;
  transform: scale(0.55) translateY(12px);
}

.reward-amount::before {
  position: absolute;
  z-index: -1;
  top: -115%;
  left: -28%;
  width: 24%;
  height: 320%;
  background: linear-gradient(90deg, transparent, rgb(255 255 255 / 72%), transparent);
  content: "";
  opacity: 0;
  transform: rotate(21deg);
}

.reveal-overlay.is-visible .reward-amount,
.reveal-overlay[aria-hidden="false"] .reward-amount,
body.is-revealed .reward-amount {
  animation: reward-amount-pop 880ms var(--ease-snap) 230ms both;
}

.reveal-overlay.is-visible .reward-amount::before,
.reveal-overlay[aria-hidden="false"] .reward-amount::before,
body.is-revealed .reward-amount::before {
  animation: reward-plaque-glint 1050ms var(--ease-out) 520ms both;
}

.reward-amount small {
  position: relative;
  z-index: 1;
  margin-top: 12px;
  margin-right: 7px;
  color: var(--gold-soft);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1.25rem, 6vw, 1.75rem);
  font-style: italic;
  text-shadow: 0 3px 0 rgb(76 0 18 / 70%);
}

.reward-amount strong {
  position: relative;
  z-index: 1;
  background: linear-gradient(180deg, #fff 0%, #fff7c7 32%, var(--gold) 68%, #ee9b18 100%);
  background-clip: text;
  color: transparent;
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(3.15rem, 15vw, 5.4rem);
  font-style: italic;
  letter-spacing: 0.025em;
  line-height: 1;
  filter: drop-shadow(0 4px 0 rgb(91 2 23 / 85%)) drop-shadow(0 0 18px rgb(255 240 165 / 65%));
  -webkit-background-clip: text;
}

.reward-confirmation {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 8px;
  padding: 5px 11px;
  border: 1px solid rgb(255 229 155 / 34%);
  border-radius: 999px;
  background: rgb(255 201 74 / 9%);
  color: #fff0bd;
  font-size: clamp(0.62rem, 2.8vw, 0.76rem);
  letter-spacing: 0.07em;
}

.reward-confirmation svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: var(--gold);
  stroke-width: 2.2;
}

#reward-description {
  width: min(100%, 350px);
  margin: 9px auto 0;
  color: #deddec;
  font-size: clamp(0.76rem, 3.1vw, 0.9rem);
  line-height: 1.4;
}

.reveal-sound {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  padding: 5px 10px;
  border: 1px solid rgb(255 201 74 / 20%);
  border-radius: 999px;
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.equalizer {
  display: flex;
  height: 12px;
  align-items: center;
  gap: 2px;
}

.equalizer i {
  width: 2px;
  height: 100%;
  border-radius: 999px;
  background: var(--gold);
  transform-origin: center;
}

.reveal-overlay.is-visible .equalizer i,
.reveal-overlay[aria-hidden="false"] .equalizer i,
body.is-revealed .equalizer i {
  animation: reveal-equalizer 520ms ease-in-out 3 alternate;
}

.equalizer i:nth-child(2),
.equalizer i:nth-child(4) {
  animation-delay: 70ms !important;
}

.equalizer i:nth-child(3) {
  animation-delay: 130ms !important;
}

.redirect-countdown {
  min-height: 32px;
  margin-top: 10px;
  padding: 8px 11px;
  border: 1px solid rgb(236 72 153 / 24%);
  border-radius: 10px;
  background: rgb(236 72 153 / 8%);
  color: #f5d6e7;
  font-size: clamp(0.64rem, 2.7vw, 0.76rem);
  font-weight: 900;
  letter-spacing: 0.06em;
}

.redirect-countdown[data-auto="true"] {
  background:
    linear-gradient(90deg, rgb(236 72 153 / 17%), rgb(255 201 74 / 12%)),
    rgb(18 16 34 / 74%);
}

.final-cta,
.browser-fallback,
.copy-destination {
  cursor: pointer;
  touch-action: manipulation;
}

.final-cta {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 9px;
  padding: 11px 14px;
  border: 1px solid rgb(255 246 186 / 68%);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 18%), transparent 38%),
    linear-gradient(100deg, #a30725, var(--lacquer-bright) 55%, var(--pink-hot));
  box-shadow: inset 0 -4px rgb(93 0 19 / 42%), 0 12px 30px rgb(236 72 153 / 32%);
  color: var(--cream);
  font-family: Impact, "Arial Black", sans-serif;
  font-size: clamp(1rem, 4.5vw, 1.25rem);
  font-style: italic;
  font-weight: 900;
  letter-spacing: 0.035em;
  text-shadow: 0 2px 1px rgb(0 0 0 / 27%);
  transition: filter 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.final-cta svg {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  color: var(--gold-soft);
  stroke-width: 2.5;
}

.final-cta:hover {
  filter: brightness(1.12);
  box-shadow: inset 0 -4px rgb(93 0 19 / 42%), 0 14px 36px rgb(236 72 153 / 42%);
}

.final-cta:active {
  filter: brightness(0.9);
  opacity: 0.9;
}

.final-cta[aria-disabled="true"] {
  cursor: wait;
  filter: saturate(0.7);
  opacity: 0.65;
  pointer-events: none;
}

.browser-fallback {
  display: grid;
  width: 100%;
  min-height: 58px;
  place-items: center;
  gap: 4px;
  margin-top: 9px;
  padding: 9px 12px;
  border: 1px solid rgb(255 201 74 / 30%);
  border-radius: 12px;
  background: rgb(255 201 74 / 7%);
  color: #eee9db;
  font-size: 0.7rem;
  line-height: 1.25;
  text-align: center;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.browser-fallback b {
  color: var(--gold-soft);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
}

.browser-fallback:hover {
  border-color: rgb(255 201 74 / 58%);
  background: rgb(255 201 74 / 12%);
}

.copy-destination {
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 9px 12px;
  border: 1px solid rgb(255 255 255 / 16%);
  border-radius: 11px;
  background: rgb(255 255 255 / 5%);
  color: #deddec;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  transition: background-color 180ms ease, border-color 180ms ease;
}

.copy-destination svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
}

.copy-destination:hover {
  border-color: rgb(255 255 255 / 28%);
  background: rgb(255 255 255 / 9%);
}

.reveal-terms {
  display: block;
  margin-top: 10px;
  color: #aaa9c0;
  font-size: 0.61rem;
  line-height: 1.3;
}

.noscript {
  position: fixed;
  z-index: 120;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 12px;
  border: 1px solid var(--gold);
  border-radius: 12px;
  background: var(--ink-raised);
  color: var(--cream);
  text-align: center;
}

.noscript p {
  margin: 0;
}

.pixel-fallback {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

@keyframes gift-stage-charge {
  0%,
  18% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
  }
  52% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.82);
  }
  78% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1.08);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.85);
  }
}

@keyframes screen-flash {
  0%,
  8% {
    opacity: 0;
  }
  12% {
    opacity: 0.82;
  }
  22% {
    opacity: 0.12;
  }
  32% {
    opacity: 0.38;
  }
  100% {
    opacity: 0;
  }
}

@keyframes impact-core-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.05) rotate(-22deg);
  }
  9% {
    opacity: 1;
  }
  28% {
    opacity: 0.96;
    transform: translate(-50%, -50%) scale(0.92) rotate(3deg);
  }
  62% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(1.48) rotate(18deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.05) rotate(31deg);
  }
}

@keyframes shockwave-burst {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
  13% {
    opacity: 1;
  }
  100% {
    border-width: 1px;
    opacity: 0;
    transform: translate(-50%, -50%) scale(10);
  }
}

@keyframes reward-amount-pop {
  0% {
    opacity: 0;
    transform: scale(0.5) translateY(16px);
  }
  55% {
    opacity: 1;
    transform: scale(1.07) translateY(-3px);
  }
  76% {
    transform: scale(0.98) translateY(1px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes reward-plaque-glint {
  0% {
    left: -28%;
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  76%,
  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes gift-arrive {
  from {
    opacity: 0;
    transform: translateY(22px) scale(0.82) rotate(-2deg);
    filter: drop-shadow(0 0 0 rgb(0 0 0 / 0%)) brightness(1.8);
  }
  58% {
    opacity: 1;
    transform: translateY(-4px) scale(1.03) rotate(1deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0deg);
    filter: drop-shadow(0 20px 25px rgb(0 0 0 / 48%)) brightness(1);
  }
}

@keyframes gift-shake {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  12% {
    transform: translate3d(-5px, 1px, 0) rotate(-2deg) scale(1.03);
  }
  24% {
    transform: translate3d(6px, -2px, 0) rotate(2.5deg) scale(1.05);
  }
  38% {
    transform: translate3d(-8px, 0, 0) rotate(-3deg) scale(1.07);
  }
  52% {
    transform: translate3d(8px, -4px, 0) rotate(3deg) scale(1.08);
  }
  68% {
    transform: translate3d(-4px, -8px, 0) rotate(-1deg) scale(1.11);
  }
  84% {
    transform: translate3d(2px, -13px, 0) rotate(0.5deg) scale(1.15);
    filter: drop-shadow(0 0 34px rgb(255 201 74 / 75%)) brightness(1.28);
  }
}

@keyframes lid-charge {
  0%,
  58% {
    transform: translate(0, 0) rotate(0deg);
  }
  72% {
    transform: translate(-4%, -16%) rotate(-7deg);
  }
  100% {
    opacity: 0;
    transform: translate(-18%, -78%) rotate(-22deg) scale(1.1);
  }
}

@keyframes lid-art-open {
  0%,
  55% {
    opacity: 1;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
  76% {
    opacity: 1;
    transform: translate(-5%, -15%) rotate(-7deg) scale(1.04);
  }
  100% {
    opacity: 0;
    transform: translate(-18%, -45%) rotate(-18deg) scale(1.1);
    filter: brightness(1.7) drop-shadow(0 0 22px rgb(255 201 74 / 75%));
  }
}

@keyframes burst-charge {
  0%,
  55% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.1);
  }
  74% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(13);
  }
}

@keyframes burst-spin {
  from {
    opacity: 0.25;
    transform: rotate(0deg) scale(0.85);
  }
  to {
    opacity: 1;
    transform: rotate(50deg) scale(1.2);
  }
}

@keyframes reveal-burst {
  0% {
    background-color: rgb(255 255 255 / 0%);
  }
  12% {
    background-color: rgb(255 255 255 / 22%);
  }
  100% {
    background-color: rgb(255 255 255 / 0%);
  }
}

@keyframes burst-flash {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.04);
  }
  13% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(2.7);
  }
}

@keyframes burst-rays {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-9deg) scale(0.2);
  }
  22% {
    opacity: 0.78;
  }
  100% {
    opacity: 0.16;
    transform: translate(-50%, -50%) rotate(27deg) scale(1);
  }
}

@keyframes reveal-orb {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.4);
  }
  35% {
    opacity: 1;
  }
  100% {
    opacity: 0.48;
    transform: translate(-50%, -50%) scale(1.3);
  }
}

@keyframes reveal-ring {
  0% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(0.2);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(7.5);
  }
}

@keyframes confetti-burst {
  0% {
    opacity: 0;
    transform:
      translate(-50%, -50%)
      rotate(var(--particle-angle, 0deg))
      translateX(0)
      rotate(0deg)
      scale(0.2);
  }
  12% {
    opacity: 1;
  }
  70% {
    opacity: 1;
    transform:
      translate(-50%, -50%)
      rotate(var(--particle-angle, 0deg))
      translateX(var(--particle-distance, 58vmin))
      rotate(480deg)
      scale(1);
  }
  100% {
    opacity: 0;
    transform:
      translate(-50%, calc(-50% + 72px))
      rotate(var(--particle-angle, 0deg))
      translateX(calc(var(--particle-distance, 58vmin) * 1.08))
      rotate(720deg)
      scale(0.82);
  }
}

@keyframes reveal-panel {
  0% {
    opacity: 0;
    transform: translateY(24px) scale(0.72) rotateX(12deg);
  }
  62% {
    opacity: 1;
    transform: translateY(-4px) scale(1.025) rotateX(0deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1) rotateX(0deg);
  }
}

@keyframes reveal-equalizer {
  from {
    transform: scaleY(0.28);
  }
  to {
    transform: scaleY(1);
  }
}

@media (min-width: 760px) {
  .site-shell {
    padding-inline: max(28px, env(safe-area-inset-left)) max(28px, env(safe-area-inset-right));
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  }

  .hero-copy {
    text-align: left;
  }

  .hero-summary {
    margin-inline: 0;
  }

  .promo-showcase {
    margin-inline: 0;
  }

  .journey,
  .age-disclosure {
    justify-content: flex-start;
  }

  .reward-chip {
    justify-content: flex-start;
  }

  .gift-stage {
    min-height: 310px;
  }
}

@media (min-width: 1060px) {
  .site-shell {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .topbar {
    margin-bottom: 22px;
  }

  .gift-card {
    grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
    align-items: center;
    gap: 15px;
  }

  .gift-controls {
    padding: 10px 6px;
  }

  .gift-stage {
    min-height: 360px;
    max-height: 430px;
  }
}

@media (max-width: 480px) and (max-height: 700px) {
  .site-shell {
    padding-block: max(6px, env(safe-area-inset-top)) max(8px, env(safe-area-inset-bottom));
  }

  .topbar {
    min-height: 44px;
    margin-bottom: 5px;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }

  .hero-layout {
    gap: 7px;
  }

  .eyebrow {
    margin-bottom: 5px;
    padding-block: 3px;
  }

  h1 {
    font-size: clamp(1.7rem, 9vw, 2.4rem);
  }

  .hero-summary,
  .journey {
    display: none;
  }

  .promo-showcase {
    gap: 3px;
    margin-top: 6px;
    padding: 5px 6px;
    border-radius: 12px;
  }

  .trend-badge {
    min-height: 21px;
    padding-block: 2px;
    font-size: 0.52rem;
  }

  .max-win-banner strong {
    font-size: 1.03rem;
  }

  .promo-terms {
    font-size: 0.44rem;
    line-height: 1.2;
  }

  .reward-chip {
    margin-top: 6px;
    padding-block: 5px;
  }

  .age-disclosure {
    margin-top: 5px;
  }

  .gift-card {
    padding: 7px;
    border-radius: 18px;
  }

  .gift-stage {
    min-height: 220px;
    max-height: 220px;
    aspect-ratio: auto;
  }

  .gift-box {
    width: min(75%, 205px);
  }

  .gift-controls {
    padding-top: 5px;
  }

  .gift-heading {
    display: none;
  }

  .gift-status {
    margin: 2px 0 4px;
  }

  .gift-open-button {
    min-height: 58px;
  }

  .benefit-strip,
  .compliance {
    display: none;
  }
}

@media (max-width: 480px) and (max-height: 560px) {
  .sound-toggle {
    min-width: 96px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-copy {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 4px 8px;
  }

  .eyebrow {
    grid-column: 1 / -1;
    justify-self: center;
    margin: 0;
  }

  .promo-showcase {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  h1 {
    font-size: clamp(1.45rem, 8.1vw, 2rem);
    text-align: left;
  }

  .reward-chip {
    min-width: 0;
    margin: 0;
    padding: 4px 8px;
  }

  .reward-chip-icon {
    display: none;
  }

  .reward-chip small {
    font-size: 0.48rem;
  }

  .reward-chip b {
    font-size: 1.08rem;
  }

  .age-disclosure {
    grid-column: 1 / -1;
    margin: 0;
  }

  .gift-stage {
    min-height: 190px;
    max-height: 190px;
  }

  .gift-box {
    width: min(74%, 178px);
  }

  .gift-open-label {
    bottom: 4px;
  }

  .gift-status {
    display: none;
  }

  .gift-open-button {
    min-height: 55px;
  }

  .reveal-overlay {
    align-items: flex-start;
    padding-block: max(7px, env(safe-area-inset-top)) max(7px, env(safe-area-inset-bottom));
  }

  .reveal-panel {
    padding: 12px 11px 10px;
  }

  .panel-crown,
  .reveal-sound,
  #reward-description {
    display: none;
  }

  .reveal-kicker {
    margin: 0 0 2px;
  }

  .reveal-panel h2 {
    font-size: 1.45rem;
  }

  .reveal-promo {
    gap: 2px;
    margin-top: 3px;
    padding: 3px 5px;
    border-radius: 9px;
  }

  .reveal-promo .trend-badge {
    min-height: 17px;
    font-size: 0.45rem;
  }

  .reveal-promo > strong {
    font-size: 0.78rem;
  }

  .reveal-promo-terms {
    font-size: 0.39rem;
  }

  .reward-label {
    margin-top: 4px;
    font-size: 0.56rem;
  }

  .reward-amount {
    min-height: 78px;
    margin-top: 4px;
    padding: 7px 9px 5px;
  }

  .reward-amount small {
    margin-top: 8px;
    font-size: 1.05rem;
  }

  .reward-amount strong {
    font-size: 3.3rem;
  }

  .reward-confirmation {
    min-height: 26px;
    margin-top: 5px;
    padding-block: 3px;
    font-size: 0.58rem;
  }

  .redirect-countdown,
  .final-cta {
    margin-top: 5px;
  }
}

@media (max-width: 359px) {
  .site-shell {
    padding-inline: max(8px, env(safe-area-inset-left)) max(8px, env(safe-area-inset-right));
  }

  .topbar {
    gap: 7px;
  }

  .sound-toggle {
    min-width: 94px;
    padding-inline: 9px;
  }

  .brand-copy b {
    font-size: 1.2rem;
  }

  .journey {
    gap: 3px;
    font-size: 0.51rem;
  }

  .journey svg {
    width: 11px;
    height: 11px;
    flex-basis: 11px;
  }

  .gift-open-button {
    grid-template-columns: 33px minmax(0, 1fr) 18px;
    gap: 7px;
    padding-inline: 9px;
  }

  .button-gift-icon {
    width: 33px;
    height: 33px;
  }

  .benefit-strip {
    grid-template-columns: 1fr;
  }

  .benefit-strip span + span {
    border-top: 1px solid rgb(255 255 255 / 10%);
    border-left: 0;
  }
}

@media (max-width: 340px) and (max-height: 520px) {
  .site-shell {
    padding-block: max(4px, env(safe-area-inset-top)) max(5px, env(safe-area-inset-bottom));
  }

  .topbar {
    margin-bottom: 2px;
  }

  .hero-layout {
    gap: 4px;
  }

  .hero-copy {
    gap: 3px 6px;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    display: flex;
    grid-column: 1 / -1;
    justify-content: center;
    gap: 5px;
    font-size: 1.12rem;
    line-height: 1;
    text-align: center;
  }

  h1 strong {
    margin-top: 0;
  }

  .promo-showcase {
    gap: 1px;
    padding: 3px 4px;
  }

  .trend-badge {
    min-height: 18px;
    padding-block: 1px;
  }

  .max-win-banner strong {
    font-size: 0.94rem;
  }

  .promo-terms {
    font-size: 0.41rem;
    line-height: 1.1;
  }

  .reward-chip {
    padding: 3px 6px;
  }

  .age-disclosure {
    min-height: 20px;
    font-size: 0.55rem;
  }

  .gift-card {
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: 5px;
    padding: 5px;
    border-radius: 14px;
  }

  .gift-stage {
    min-height: 128px;
    max-height: 128px;
  }

  .gift-box {
    width: min(88%, 112px);
  }

  .gift-open-label {
    bottom: 2px;
    min-width: 84px;
    padding-block: 2px;
    font-size: 0.47rem;
  }

  .gift-controls {
    padding: 0;
  }

  .gift-open-button {
    min-height: 48px;
    grid-template-columns: 28px minmax(0, 1fr) 16px;
    gap: 4px;
    padding: 5px 6px;
    border-radius: 10px;
  }

  .button-gift-icon {
    width: 28px;
    height: 28px;
  }

  .button-gift-icon svg {
    width: 19px;
    height: 19px;
  }

  .gift-open-button strong {
    font-size: 0.78rem;
  }

  .gift-open-button small {
    display: none;
  }

  .button-arrow {
    width: 16px;
    height: 16px;
  }
}

@media (min-width: 500px) and (max-height: 420px) and (orientation: landscape) {
  .site-shell {
    padding-block: max(5px, env(safe-area-inset-top)) max(5px, env(safe-area-inset-bottom));
    padding-inline: max(10px, env(safe-area-inset-left)) max(10px, env(safe-area-inset-right));
    overflow-x: hidden;
  }

  .topbar {
    min-height: 44px;
    margin-bottom: 3px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: 9px;
  }

  .hero-copy {
    text-align: left;
  }

  .eyebrow {
    margin-bottom: 3px;
    padding-block: 3px;
    font-size: 0.54rem;
  }

  h1 {
    font-size: clamp(1.55rem, 5.7vw, 2.4rem);
  }

  .hero-summary,
  .journey {
    display: none;
  }

  .promo-showcase {
    gap: 2px;
    margin-top: 5px;
    padding: 4px 5px;
    border-radius: 10px;
  }

  .trend-badge {
    min-height: 18px;
    padding-block: 2px;
    font-size: 0.43rem;
  }

  .max-win-banner strong {
    font-size: 0.82rem;
  }

  .promo-terms {
    font-size: 0.37rem;
    line-height: 1.12;
  }

  .reward-chip {
    min-width: 0;
    margin-top: 7px;
    padding: 4px 8px;
  }

  .reward-chip-icon {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .reward-chip b {
    font-size: 1.18rem;
  }

  .age-disclosure {
    justify-content: flex-start;
    margin-top: 4px;
    font-size: 0.55rem;
  }

  .gift-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: 7px;
    padding: 6px;
    border-radius: 16px;
  }

  .gift-stage {
    min-height: 188px;
    max-height: 188px;
    aspect-ratio: auto;
  }

  .gift-box {
    width: min(92%, 178px);
  }

  .gift-open-label {
    bottom: 3px;
    min-width: 98px;
    padding-block: 3px;
    font-size: 0.52rem;
  }

  .gift-controls {
    padding: 3px 0;
  }

  .gift-heading span {
    font-size: 0.48rem;
  }

  .gift-heading h2 {
    font-size: 0.96rem;
  }

  .gift-status {
    margin: 4px 0;
    font-size: 0.54rem;
  }

  .gift-open-button {
    min-height: 54px;
    grid-template-columns: 31px minmax(0, 1fr) 17px;
    gap: 6px;
    padding: 6px 8px;
    border-radius: 12px;
  }

  .button-gift-icon {
    width: 31px;
    height: 31px;
  }

  .gift-open-button strong {
    font-size: 0.82rem;
  }

  .gift-open-button small {
    font-size: 0.47rem;
  }

  .benefit-strip,
  .compliance {
    display: none;
  }

  .reveal-overlay {
    align-items: flex-start;
    padding-block: max(7px, env(safe-area-inset-top)) max(7px, env(safe-area-inset-bottom));
  }

  .reveal-panel {
    width: min(100%, 680px);
    padding: 11px 16px;
  }

  .panel-crown,
  .reveal-sound {
    display: none;
  }

  .reveal-kicker {
    margin: 0;
  }

  .reveal-panel h2 {
    font-size: 1.35rem;
  }

  .reveal-promo {
    gap: 2px;
    margin-top: 2px;
    padding: 2px 5px;
    border-radius: 8px;
  }

  .reveal-promo .trend-badge {
    min-height: 16px;
    font-size: 0.42rem;
  }

  .reveal-promo > strong {
    font-size: 0.75rem;
  }

  .reveal-promo-terms {
    font-size: 0.37rem;
    line-height: 1.1;
  }

  .reward-label {
    margin-top: 3px;
    font-size: 0.54rem;
  }

  .reward-amount {
    min-height: 70px;
    margin-top: 2px;
    padding: 4px 10px;
  }

  .reward-amount small {
    margin-top: 8px;
    font-size: 1rem;
  }

  .reward-amount strong {
    font-size: 2.9rem;
  }

  .reward-confirmation {
    min-height: 24px;
    margin-top: 3px;
    padding-block: 2px;
    font-size: 0.53rem;
  }

  #reward-description {
    margin-top: 3px;
    font-size: 0.7rem;
  }

  .redirect-countdown {
    min-height: 28px;
    margin-top: 5px;
    padding-block: 5px;
  }

  .final-cta {
    min-height: 44px;
    margin-top: 5px;
    padding-block: 6px;
  }

  .browser-fallback {
    min-height: 48px;
  }

  .copy-destination {
    min-height: 44px;
  }

  .reveal-terms {
    margin-top: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .gift-box,
  .gift-lid,
  .reveal-effects,
  .reveal-impact,
  .reveal-shockwave,
  .reveal-screen-flash,
  .reward-amount,
  .reward-amount::before,
  .confetti,
  .banknote {
    animation: none;
  }

  .gift-experience.is-opening .gift-box,
  .gift-experience.is-opening .gift-lid,
  .gift-experience.is-opening .gift-flare,
  .gift-stage[data-phase="opening"]::before,
  .gift-stage[data-phase="opening"] .stage-backdrop::before,
  .gift-box.is-opening,
  .gift-box.is-opening .gift-lid,
  .gift-box.is-opening .gift-lid-art,
  .gift-box.is-opening .gift-flare,
  .reveal-overlay.is-visible .reveal-effects,
  .reveal-overlay[aria-hidden="false"] .reveal-effects,
  .reveal-overlay.is-visible .reveal-flash,
  .reveal-overlay[aria-hidden="false"] .reveal-flash,
  .reveal-overlay.is-visible .reveal-rays,
  .reveal-overlay[aria-hidden="false"] .reveal-rays,
  .reveal-overlay.is-visible .reveal-orb,
  .reveal-overlay[aria-hidden="false"] .reveal-orb,
  .reveal-overlay.is-visible .reveal-ring,
  .reveal-overlay[aria-hidden="false"] .reveal-ring,
  .reveal-overlay.is-visible .gift-particle,
  .reveal-overlay[aria-hidden="false"] .gift-particle,
  .reveal-overlay.is-visible .reveal-panel,
  .reveal-overlay[aria-hidden="false"] .reveal-panel,
  .reveal-overlay.is-visible .equalizer i,
  .reveal-overlay[aria-hidden="false"] .equalizer i,
  body.is-revealed .equalizer i {
    animation: none;
  }

  .reveal-overlay.is-visible .reveal-panel,
  .reveal-overlay[aria-hidden="false"] .reveal-panel,
  body.is-revealed .reveal-panel {
    opacity: 1;
    transform: none;
  }

  .gift-experience.is-revealed .gift-art-open,
  .gift-box.is-revealed .gift-art-open {
    opacity: 1;
    transform: none;
  }
}

@media (forced-colors: active) {
  .gift-open-button,
  .gift-box,
  .final-cta,
  .sound-toggle,
  .browser-fallback,
  .copy-destination {
    border: 2px solid ButtonText;
  }

  .gift-open-button:focus-visible,
  .gift-box:focus-visible,
  .final-cta:focus-visible,
  .sound-toggle:focus-visible,
  .browser-fallback:focus-visible,
  .copy-destination:focus-visible {
    outline-color: Highlight;
  }
}
