/* Offer lighting and entry UI.
   The block order matches the former production cascade: effects, adaptive
   device overrides, then the current entry component. */

/* ARARA CTA light treatment: visible aura, alpha-shaped sheen and restrained motion. */
.cta-reveal {
  position: relative;
  isolation: isolate;
  overflow: visible;
}

.cta-reveal::before,
.cta-reveal::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, -50%, 0) scale(.94);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
  z-index: 0;
}

/* Keep every fade inside its own surface. A blurred transformed surface can be
   cropped to a visible rectangle by Chrome's compositor at the pulse peak. */
.cta-reveal::before {
  width: min(132vw, 1360px);
  aspect-ratio: 2.8 / 1;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(255, 249, 207, .62) 0%,
      rgba(255, 192, 75, .4) 19%,
      rgba(255, 91, 45, .22) 37%,
      rgba(199, 53, 187, .12) 55%,
      rgba(199, 53, 187, .028) 70%,
      transparent 86%);
}

/* Bright core gives the PNG the impression of emitting light. */
.cta-reveal::after {
  width: min(108vw, 1080px);
  aspect-ratio: 3.2 / 1;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(255, 255, 235, .72) 0%,
      rgba(255, 211, 100, .4) 28%,
      rgba(255, 98, 47, .15) 51%,
      rgba(190, 55, 181, .035) 68%,
      transparent 86%);
}

.mega-cta {
  position: relative;
  z-index: 2;
  overflow: visible;
}

.mega-cta__art {
  position: relative;
  z-index: 2;
  transform: translate3d(0, 0, 0);
  transform-origin: 50% 50%;
  filter:
    drop-shadow(0 0 8px rgba(255, 239, 170, .38))
    drop-shadow(0 0 18px rgba(255, 104, 45, .25)) !important;
  will-change: transform, filter;
}

/* Social profiles sit outside the CTA flow, preserving the button's exact
   position while extending the same gold, ink and magenta visual language. */
.social-links {
  position: absolute;
  z-index: 5;
  top: calc(100% + clamp(6px, 1.25vh, 12px));
  left: 50%;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(-50%, 8px, 0);
  transition:
    opacity .34s ease,
    transform .42s cubic-bezier(.16, 1, .3, 1),
    visibility 0s linear .42s;
}

.hero.is-cta-visible .social-links,
body.is-cue-arrived .social-links {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(-50%, 0, 0);
  transition-delay: .14s, .14s, 0s;
}

.social-link {
  isolation: isolate;
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  box-sizing: border-box;
  place-items: center;
  border: 1px solid rgba(242, 181, 48, .7);
  border-radius: 50%;
  color: #efb62e;
  background:
    radial-gradient(circle at 50% 35%, rgba(126, 36, 106, .42), transparent 62%),
    rgba(15, 5, 34, .9);
  box-shadow:
    0 0 0 1px rgba(80, 20, 73, .72),
    0 5px 16px rgba(4, 0, 15, .58),
    inset 0 1px 0 rgba(255, 231, 159, .16);
  text-decoration: none;
  touch-action: manipulation;
  transition:
    color .22s ease,
    border-color .22s ease,
    background-color .22s ease,
    box-shadow .22s ease,
    transform .22s cubic-bezier(.16, 1, .3, 1);
}

.social-link::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -4px;
  border: 1px solid rgba(206, 44, 157, .3);
  border-radius: inherit;
  opacity: .64;
  transform: scale(.92);
  transition: opacity .22s ease, transform .22s ease;
}

.social-link svg {
  display: block;
  width: 20px;
  height: 20px;
  overflow: visible;
  fill: currentColor;
}

.social-link:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.social-link:nth-child(2) .social-link__dot {
  fill: currentColor;
  stroke: none;
}

.social-link .social-link__play {
  fill: #160622;
}

.social-link .social-link__steam {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.social-link[data-link-key="STEAM"].is-placeholder {
  opacity: .72;
}

.social-link.is-placeholder {
  cursor: default;
  opacity: .38;
  pointer-events: none;
  box-shadow:
    0 0 0 1px rgba(80, 20, 73, .48),
    inset 0 1px 0 rgba(255, 231, 159, .1);
}

.social-link.is-placeholder::before {
  opacity: .22;
}

@media (any-hover: hover) and (any-pointer: fine) {
  .social-link:hover,
  .social-link:focus-visible {
    color: #ffe7a1;
    border-color: rgba(255, 214, 101, .96);
    background-color: rgba(50, 10, 66, .92);
    box-shadow:
      0 0 0 1px rgba(204, 43, 159, .72),
      0 0 18px rgba(233, 55, 176, .3),
      0 7px 18px rgba(4, 0, 15, .65),
      inset 0 1px 0 rgba(255, 240, 185, .24);
    outline: none;
    transform: translateY(-2px) scale(1.06);
  }

  .social-link:hover::before,
  .social-link:focus-visible::before {
    opacity: 1;
    transform: scale(1.04);
  }
}

.social-link:active {
  transform: translateY(1px) scale(.96);
}

/* Re-enable the button pseudo-elements after the reset in arara-polish. */
.mega-cta::before,
.mega-cta::after {
  display: block !important;
  content: "";
  position: absolute;
  pointer-events: none;
}

/* Travelling highlight follows the real alpha of the CTA PNG. */
.mega-cta::before {
  inset: -4%;
  z-index: 4;
  opacity: 0;
  background:
    linear-gradient(108deg,
      transparent 27%,
      rgba(255, 255, 255, .08) 37%,
      rgba(255, 251, 205, .98) 47%,
      rgba(255, 181, 77, .42) 55%,
      transparent 68%);
  -webkit-mask: url("/assets/arara-cta-1024.webp?v=1") center / contain no-repeat;
  mask: url("/assets/arara-cta-1024.webp?v=1") center / contain no-repeat;
  mix-blend-mode: screen;
  transform: translate3d(-74%, 0, 0) skewX(-9deg);
  will-change: transform, opacity;
}

/* Compact radiance directly behind the artwork. */
.mega-cta::after {
  inset: 9% 4%;
  z-index: 1;
  border-radius: 50%;
  opacity: 0;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(255, 244, 172, .62) 0%,
      rgba(255, 123, 53, .3) 42%,
      rgba(165, 47, 181, .13) 66%,
      transparent 82%);
  filter: blur(14px);
  transform: scale(.94);
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}

.hero.is-cta-visible .cta-reveal::before,
body.is-cue-arrived .cta-reveal::before {
  animation: arara-cta-aura 2.85s ease-in-out infinite;
}

.hero.is-cta-visible .cta-reveal::after,
body.is-cue-arrived .cta-reveal::after {
  animation: arara-cta-core 2.25s ease-in-out infinite;
}

.hero.is-cta-visible .mega-cta::before,
body.is-cue-arrived .mega-cta::before {
  animation: arara-cta-sheen 3.2s cubic-bezier(.18, .7, .2, 1) infinite;
}

.hero.is-cta-visible .mega-cta::after,
body.is-cue-arrived .mega-cta::after {
  animation: arara-cta-radiance 2.45s ease-in-out infinite;
}

.hero.is-cta-visible .mega-cta__art,
body.is-cue-arrived .mega-cta__art {
  animation: arara-cta-art-breathe 3.15s ease-in-out infinite;
}

@keyframes arara-cta-aura {
  0%, 100% {
    opacity: .5;
    transform: translate3d(-50%, -50%, 0) scale(.94);
  }
  47% {
    opacity: .94;
    transform: translate3d(-50%, -50%, 0) scale(1.06);
  }
  72% {
    opacity: .69;
    transform: translate3d(-50%, -50%, 0) scale(1.015);
  }
}

@keyframes arara-cta-core {
  0%, 100% {
    opacity: .42;
    transform: translate3d(-50%, -50%, 0) scale(.96);
  }
  52% {
    opacity: .9;
    transform: translate3d(-50%, -50%, 0) scale(1.045);
  }
}

@keyframes arara-cta-radiance {
  0%, 100% {
    opacity: .4;
    transform: scale(.94);
  }
  50% {
    opacity: .88;
    transform: scale(1.075);
  }
}

@keyframes arara-cta-art-breathe {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter:
      drop-shadow(0 0 8px rgba(255, 239, 170, .36))
      drop-shadow(0 0 18px rgba(255, 104, 45, .24));
  }
  50% {
    transform: translate3d(0, -2px, 0) scale(1.006);
    filter:
      drop-shadow(0 0 12px rgba(255, 246, 189, .58))
      drop-shadow(0 0 28px rgba(255, 103, 44, .39));
  }
}

@keyframes arara-cta-sheen {
  0%, 16% {
    opacity: 0;
    transform: translate3d(-74%, 0, 0) skewX(-9deg);
  }
  22% { opacity: .2; }
  43% { opacity: .98; }
  61% { opacity: .3; }
  69%, 100% {
    opacity: 0;
    transform: translate3d(74%, 0, 0) skewX(-9deg);
  }
}

@media (max-width: 900px), (any-pointer: coarse) {
  .cta-reveal::before {
    width: min(146vw, 960px);
  }

  .cta-reveal::after {
    width: min(126vw, 800px);
  }

  .mega-cta::after { filter: blur(9px); }

  .social-links {
    top: calc(100% + 6px);
    width: 186px;
    gap: 10px;
    flex-wrap: wrap;
  }

  .social-link {
    width: 39px;
    height: 39px;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .mega-cta__art {
    filter:
      drop-shadow(0 0 6px rgba(255, 239, 170, .34))
      drop-shadow(0 0 13px rgba(255, 104, 45, .22)) !important;
  }

  .hero.is-cta-visible .mega-cta__art,
  body.is-cue-arrived .mega-cta__art {
    animation-name: arara-cta-art-breathe-mobile;
  }

  .hero.is-cta-visible .mega-cta::before,
  body.is-cue-arrived .mega-cta::before {
    animation-duration: 3.8s;
  }
}

@keyframes arara-cta-art-breathe-mobile {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
    filter:
      drop-shadow(0 0 6px rgba(255, 239, 170, .34))
      drop-shadow(0 0 13px rgba(255, 104, 45, .22));
  }
  50% {
    transform: translate3d(0, -1px, 0) scale(1.004);
    filter:
      drop-shadow(0 0 8px rgba(255, 244, 186, .48))
      drop-shadow(0 0 18px rgba(255, 103, 44, .31));
  }
}

@media (prefers-reduced-motion: reduce) {
  .social-links,
  .social-link,
  .social-link::before {
    transition: none;
  }

  .hero.is-cta-visible .cta-reveal::before,
  .hero.is-cta-visible .cta-reveal::after,
  .hero.is-cta-visible .mega-cta::after,
  .hero.is-cta-visible .mega-cta__art,
  body.is-cue-arrived .cta-reveal::before,
  body.is-cue-arrived .cta-reveal::after,
  body.is-cue-arrived .mega-cta::after,
  body.is-cue-arrived .mega-cta__art {
    animation: none;
  }

  .hero.is-cta-visible .cta-reveal::before,
  body.is-cue-arrived .cta-reveal::before { opacity: .64; }

  .hero.is-cta-visible .cta-reveal::after,
  body.is-cue-arrived .cta-reveal::after { opacity: .58; }

  .hero.is-cta-visible .mega-cta::before,
  body.is-cue-arrived .mega-cta::before {
    animation: none;
    opacity: .2;
    transform: none;
  }
}

/* -------------------------------------------------------------------------- */

/* Device-tier overrides. Only selectors present in the frame-sequence landing
   remain here; the retired click journey and layered-scene rules were removed. */
html.arara-perf-lite .mega-cta:not(.is-bursting) {
  animation: none !important;
  filter: none !important;
}

html.arara-perf-lite .cta-reveal::before {
  display: none !important;
}

html.arara-perf-lite .cta-reveal::after,
html.arara-perf-lite .mega-cta::after {
  filter: none !important;
}

html.arara-perf-lite .mega-cta::after {
  opacity: .34 !important;
  animation: none !important;
}

@media (max-width: 900px), (any-pointer: coarse) {
  html.arara-perf-balanced .cta-reveal,
  html.arara-perf-lite .cta-reveal {
    will-change: transform, opacity;
  }

  body.is-user-scrolling .cta-reveal::before,
  body.is-user-scrolling .cta-reveal::after,
  body.is-user-scrolling .mega-cta::after {
    animation-play-state: paused !important;
  }

  html.arara-perf-balanced .mega-cta:not(.is-bursting),
  html.arara-perf-lite .mega-cta:not(.is-bursting) {
    animation: none !important;
    filter: none !important;
  }

  html.arara-perf-lite .cta-reveal::after {
    width: min(118vw, 720px) !important;
    filter: none !important;
    background: radial-gradient(ellipse at 50% 50%,
      rgba(255, 239, 160, .38) 0%,
      rgba(255, 119, 51, .17) 43%,
      rgba(177, 47, 165, .025) 67%,
      transparent 82%) !important;
  }

  html.arara-perf-lite .mega-cta::after {
    filter: none !important;
    opacity: .34 !important;
    animation: none !important;
  }

  html.arara-perf-lite .hero.is-cta-visible .cta-reveal::after,
  html.arara-perf-lite body.is-cue-arrived .cta-reveal::after {
    animation: arara-cta-lite-glow 2.9s ease-in-out infinite !important;
  }

  @keyframes arara-cta-lite-glow {
    0%, 100% {
      opacity: .36;
      transform: translate3d(-50%, -50%, 0) scale(.98);
    }
    50% {
      opacity: .62;
      transform: translate3d(-50%, -50%, 0) scale(1.025);
    }
  }
}

/* -------------------------------------------------------------------------- */

:root {
  --entry-panel-width: min(580px, calc(100vw - 34px));
  --entry-gold: #f2c35d;
  --entry-gold-soft: #ffe2a0;
  --entry-ink: #110816;
  --entry-violet: #21102d;
}

.drop-entry { display: none !important; }

.action-rail {
  position: fixed;
  z-index: 76;
  top: max(21px, env(safe-area-inset-top));
  left: 50%;
  display: grid;
  width: min(1160px, calc(100vw - 42px));
  min-height: 44px;
  padding: 0 4px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  border: 0;
  border-radius: 0;
  color: #fff7e7;
  background: transparent;
  box-shadow: none;
  font-family: Onest, system-ui, sans-serif;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  opacity: 0;
  transform: translate3d(-50%, -8px, 0);
  animation: entry-rail-in .7s .35s cubic-bezier(.16, 1, .3, 1) forwards;
}

.action-rail::before {
  position: absolute;
  top: 50%;
  right: 224px;
  left: 112px;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 195, 93, .28), rgba(255, 255, 255, .05) 42%, transparent 88%);
  content: "";
  opacity: .55;
  pointer-events: none;
}

.action-rail::after {
  display: none;
}

.action-rail a { color: inherit; text-decoration: none; }

.action-rail__brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 11px;
  text-shadow: 0 2px 14px rgba(4, 0, 13, .9);
}

.action-rail__brand strong {
  color: #fff5dc;
  font: 900 16px/1 Onest, system-ui, sans-serif;
  letter-spacing: .13em;
}

.action-rail__brand::after {
  width: 30px;
  height: 1px;
  margin-left: 3px;
  background: linear-gradient(90deg, rgba(242, 195, 93, .9), transparent);
  content: "";
}

.action-rail__brand small,
.action-rail__status {
  color: rgba(235, 218, 227, .46);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.action-rail__status {
  display: flex;
  align-items: center;
  gap: 7px;
}

.action-rail__status i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ee4c9d;
  box-shadow: 0 0 0 4px rgba(238, 76, 157, .09), 0 0 12px rgba(238, 76, 157, .5);
  animation: entry-live 1.8s ease-in-out infinite;
}

.action-rail__routes {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 34px;
}

.action-rail__entry,
.action-rail__miniapp {
  position: relative;
  min-height: 34px;
  padding: 0;
  border: 0;
  border-radius: 0;
  font: 850 8px/1 Onest, system-ui, sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
  cursor: pointer;
  text-shadow: 0 2px 14px rgba(4, 0, 13, .9);
}

.action-rail__entry {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff0c8;
  background: transparent;
  box-shadow: none;
}

.action-rail__entry::before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #f3c35f;
  box-shadow: 0 0 10px rgba(243, 195, 95, .72);
  content: "";
}

.action-rail__miniapp {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(248, 236, 249, .62) !important;
  background: transparent;
}

.action-rail__miniapp i {
  color: #e7bd64;
  font-style: normal;
  font-size: 10px;
}

.action-rail__entry::after,
.action-rail__miniapp::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(242, 195, 93, .8), rgba(236, 71, 164, .45));
  content: "";
  transform: scaleX(.22);
  transform-origin: left;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1), opacity .32s ease;
}

.action-rail__entry::after {
  opacity: .86;
  transform: scaleX(1);
}

.action-rail__miniapp::after { opacity: .28; }

.action-rail__entry,
.action-rail__miniapp,
.scroll-cue__label {
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.action-rail__entry:hover,
.action-rail__entry:focus-visible,
.action-rail__miniapp:hover,
.action-rail__miniapp:focus-visible {
  outline: 0;
  color: #fff3d2 !important;
  transform: translateY(-1px);
}

.action-rail__entry:hover::after,
.action-rail__entry:focus-visible::after,
.action-rail__miniapp:hover::after,
.action-rail__miniapp:focus-visible::after {
  opacity: 1;
  transform: scaleX(1);
}

.scroll-cue {
  display: grid !important;
  grid-template-columns: 34px auto;
  width: auto !important;
  height: auto !important;
  min-width: 0;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  align-items: center;
  justify-content: start;
  gap: 10px;
  padding: 5px 8px 5px 5px !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff4d9;
  background: transparent !important;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.scroll-cue__indicator {
  position: relative;
  display: grid;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(244, 205, 127, .52);
  border-radius: 50%;
  place-items: center;
  box-shadow: inset 0 0 0 4px rgba(12, 6, 25, .28), 0 5px 18px rgba(5, 2, 12, .28);
}

.scroll-cue__indicator::before {
  content: none;
}

.scroll-cue__indicator i {
  position: absolute;
  top: 50%;
  left: calc(50% + .75px);
  width: 9px;
  height: 17px;
  transform: translate(-50%, -50%);
  animation: entry-scroll-arrow 1.8s cubic-bezier(.45, 0, .55, 1) infinite;
}

.scroll-cue__indicator i::before {
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 11px;
  background: linear-gradient(180deg, rgba(255, 243, 211, .4), #efbd62);
  content: "";
  transform: translateX(-50%);
}

.scroll-cue__indicator i::after {
  position: absolute;
  bottom: 1px;
  left: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #efbd62;
  border-bottom: 1px solid #efbd62;
  content: "";
  transform: translateX(-50%) rotate(45deg);
  transform-origin: 50% 50%;
}

@keyframes entry-scroll-arrow {
  0%, 100% { opacity: .55; transform: translate(-50%, -50%) translateY(-1px); }
  50% { opacity: 1; transform: translate(-50%, -50%) translateY(2px); }
}

.scroll-cue__label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  text-align: left;
}

.scroll-cue__label small {
  color: rgba(246, 224, 186, .52);
  font: 750 6px/1 Onest, system-ui, sans-serif;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.scroll-cue__label strong {
  color: #fff5d9;
  font: 850 9px/1 Onest, system-ui, sans-serif;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.cta-reveal {
  display: grid;
  width: min(760px, calc(100vw - 18px)) !important;
  justify-items: center;
  gap: 0;
}

/* Center the complete offer inside the usable viewport below the fixed action
   rail, rather than around the raw viewport midpoint hidden by the header. */
.hero__content {
  top: calc(50% + clamp(18px, 3.5vh, 30px)) !important;
}

.cta-reveal::before,
.cta-reveal::after {
  display: none !important;
  animation: none !important;
  content: none !important;
}

.entry-panel {
  position: relative;
  width: min(430px, calc(100vw - 34px));
  max-width: 100%;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: #fff8ea;
  background: transparent;
  box-shadow: none;
  font-family: Onest, system-ui, sans-serif;
  text-align: left;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.entry-panel::before {
  display: none;
}

.entry-panel__path {
  position: relative;
  padding-top: 0;
}

.entry-panel__path + .entry-panel__path { margin-top: 10px; }

.entry-panel__step {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(235, 216, 220, .42);
  font-size: 7px;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.entry-panel__step strong { color: rgba(255, 235, 195, .7); font-weight: 850; }

.mega-cta.entry-primary {
  position: relative !important;
  z-index: 2;
  display: grid !important;
  width: min(700px, 100vw) !important;
  min-width: 0 !important;
  height: 510px !important;
  min-height: 510px !important;
  margin: 0 auto 8px !important;
  padding: 0 !important;
  place-items: center;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  color: #fff5dd !important;
  background: transparent !important;
  box-shadow: none !important;
  cursor: pointer;
  transform: none !important;
  isolation: isolate;
}

.mega-cta.entry-primary:focus-visible {
  outline: 0 !important;
}

.mega-cta.entry-primary::before {
  display: none !important;
  content: none !important;
}

.mega-cta.entry-primary::after {
  display: none !important;
  content: none !important;
}

.entry-primary__glow {
  position: absolute !important;
  z-index: 0 !important;
  inset: 8% 17% 10% !important;
  display: block !important;
  width: auto !important;
  height: auto !important;
  border-radius: 50% !important;
  background:
    radial-gradient(ellipse at 50% 50%,
      rgba(255, 237, 174, .34) 0%,
      rgba(218, 67, 167, .25) 34%,
      rgba(86, 25, 117, .1) 58%,
      transparent 76%) !important;
  filter: blur(16px);
  opacity: .82;
  transform: none !important;
  animation: entry-primary-aura 3.8s ease-in-out infinite;
  pointer-events: none;
}

.entry-primary__device {
  position: absolute !important;
  z-index: 4 !important;
  display: block !important;
  overflow: visible;
  width: auto !important;
  max-width: none !important;
  height: auto;
  color: #fff2cf;
  pointer-events: none;
}

.entry-primary__device img {
  position: absolute;
  display: block;
  max-width: none;
  height: auto;
  mix-blend-mode: screen;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 48%, rgba(0, 0, 0, .9) 62%, transparent 84%);
  mask-image: radial-gradient(ellipse at center, #000 48%, rgba(0, 0, 0, .9) 62%, transparent 84%);
  pointer-events: none;
  user-select: none;
}

.entry-primary__device--iphone {
  top: 205px;
  left: 75px;
  width: 100px !important;
  height: 145px;
  transform: rotate(-10deg);
  animation: entry-device-left 6.4s cubic-bezier(.45, 0, .55, 1) infinite;
}

.entry-primary__device--iphone img {
  top: 46%;
  left: 50%;
  width: 172.5px;
  -webkit-mask-image: none;
  mask-image: none;
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  filter: contrast(1.08) saturate(1.06) drop-shadow(16px 12px 18px rgba(0, 0, 0, .48));
}

.entry-primary__device--macbook {
  top: 205px;
  right: 45px;
  width: 125px !important;
  height: 120px;
  transform: rotate(7deg);
  animation: entry-device-right 7.1s .55s cubic-bezier(.45, 0, .55, 1) infinite;
}

.entry-primary__device--macbook img {
  top: 48%;
  left: 50%;
  width: 232.5px;
  -webkit-mask-image: none;
  mask-image: none;
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  filter: contrast(1.08) brightness(1.08) drop-shadow(-12px 13px 20px rgba(0, 0, 0, .55));
}

.entry-primary__device--rolex {
  z-index: 6 !important;
  top: 205px;
  right: 20px;
  width: 92px !important;
  height: 122px;
  transform: rotate(9deg);
  animation: entry-device-watch 7.8s .9s cubic-bezier(.45, 0, .55, 1) infinite;
}

.entry-primary__device--rolex img {
  top: 50%;
  left: 50%;
  width: 168px;
  -webkit-mask-image: none;
  mask-image: none;
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  filter:
    contrast(1.06)
    brightness(.96)
    drop-shadow(-9px 13px 18px rgba(0, 0, 0, .6))
    drop-shadow(0 0 18px rgba(255, 226, 160, .12));
}

.entry-primary__device--porsche {
  z-index: 2 !important;
  top: 190px;
  left: 50%;
  width: 370px !important;
  height: 175px;
  opacity: .96;
  transform: translateX(-50%);
  isolation: isolate;
  animation: none !important;
}

.entry-primary__device--porsche::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: 9%;
  bottom: 7%;
  left: 9%;
  height: 24%;
  border-radius: 50%;
  opacity: .82;
  background: radial-gradient(ellipse, rgba(2, 1, 8, .92) 0 34%, rgba(9, 3, 16, .62) 49%, transparent 74%);
  filter: blur(7px);
  transform: scaleY(.42);
  transform-origin: 50% 100%;
  pointer-events: none;
}

.entry-primary__device--porsche img {
  top: 50%;
  left: 50%;
  width: 555px;
  -webkit-mask-image: none;
  mask-image: none;
  mix-blend-mode: normal;
  transform: translate(-50%, -50%);
  filter:
    brightness(.9)
    contrast(1.08)
    saturate(.88)
    drop-shadow(0 20px 24px rgba(0, 0, 0, .62))
    drop-shadow(0 0 25px rgba(132, 45, 162, .18));
}

.entry-primary__hero {
  position: absolute !important;
  z-index: 5;
  top: 6px;
  left: 50%;
  display: block;
  width: 330px;
  max-width: 55%;
  height: auto;
  grid-column: auto !important;
  grid-row: auto !important;
  filter:
    drop-shadow(0 4px 2px rgba(20, 4, 25, .68))
    drop-shadow(0 0 10px rgba(255, 247, 220, .34))
    drop-shadow(0 0 26px rgba(218, 70, 174, .34));
  transform: translateX(-50%);
  transition: filter .24s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
}

.entry-primary__campaign {
  position: absolute !important;
  z-index: 7 !important;
  top: 382px !important;
  left: 50%;
  display: grid;
  width: min(390px, 64%);
  grid-column: auto !important;
  grid-row: auto !important;
  justify-items: center;
  justify-self: auto !important;
  gap: 6px;
  font-size: 1rem !important;
  letter-spacing: normal !important;
  line-height: normal !important;
  pointer-events: none;
  transform: translateX(-50%);
}

.entry-primary__campaign > strong {
  color: #ffd171;
  background: linear-gradient(180deg, #fff0ae 0%, #f8c25d 55%, #d98a2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font: 900 25px/.92 Onest, system-ui, sans-serif;
  letter-spacing: .16em;
  text-indent: .16em;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 1px 0 rgba(255, 245, 207, .54),
    0 3px 14px rgba(228, 116, 26, .34),
    0 0 24px rgba(219, 68, 163, .24);
}

.entry-primary__campaign > small {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 11px;
  color: #ef75c4;
  font: 850 8.5px/1 Onest, system-ui, sans-serif;
  letter-spacing: .28em;
  text-indent: .28em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(229, 73, 171, .44);
}

.entry-primary__campaign > small i {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(244, 188, 79, .78));
}

.entry-primary__campaign > small i:last-child {
  background: linear-gradient(90deg, rgba(244, 188, 79, .78), transparent);
}

.entry-primary__prizes {
  position: absolute !important;
  z-index: 7 !important;
  top: 425px !important;
  left: 50%;
  display: flex;
  width: max-content;
  max-width: 70%;
  grid-column: auto !important;
  grid-row: auto !important;
  align-items: center;
  justify-self: auto !important;
  justify-content: center;
  gap: 13px;
  color: rgba(255, 241, 216, .76);
  font: 800 9px/1 Onest, system-ui, sans-serif !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(3, 0, 12, .9);
  pointer-events: none;
  transform: translateX(-50%);
}

.entry-primary__prizes strong {
  color: #ffe09a;
  font: inherit;
  font-weight: 950;
}

.entry-primary__prizes > span {
  position: static !important;
  z-index: auto !important;
  grid-column: auto !important;
  grid-row: auto !important;
  justify-self: auto !important;
  font: inherit !important;
  letter-spacing: inherit !important;
  line-height: inherit !important;
  text-shadow: inherit !important;
}

.entry-primary__prizes i {
  color: rgba(230, 85, 177, .76);
  font-size: 5px;
  font-style: normal;
}

.entry-primary__hero-copy {
  position: absolute !important;
  z-index: 6 !important;
  bottom: 2px;
  left: 50%;
  display: grid;
  width: min(370px, 64%) !important;
  min-height: 44px;
  max-width: 86%;
  padding: 0 21px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
  clip-path: polygon(13px 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 13px 100%, 0 50%);
  background:
    linear-gradient(90deg, rgba(104, 31, 94, .72), rgba(35, 13, 47, .94) 28%, rgba(35, 13, 47, .94) 72%, rgba(104, 31, 94, .72));
  box-shadow:
    inset 0 0 0 1px rgba(247, 196, 91, .62),
    inset 0 0 18px rgba(232, 80, 175, .12),
    0 7px 24px rgba(3, 0, 12, .38);
  font: inherit !important;
  line-height: normal !important;
  text-shadow: none !important;
  transform: translateX(-50%);
  transition: filter .24s ease, transform .28s cubic-bezier(.16, 1, .3, 1);
}

.entry-primary__hero-copy strong {
  color: #fff7e7;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-indent: .18em;
  text-transform: uppercase;
}

.entry-primary__hero-copy i {
  color: #f4ca72;
  font-size: 14px;
  font-style: normal;
}

.entry-primary:hover .entry-primary__hero,
.entry-primary:focus-visible .entry-primary__hero {
  filter:
    drop-shadow(0 6px 2px rgba(20, 4, 25, .68))
    drop-shadow(0 0 14px rgba(255, 247, 220, .5))
    drop-shadow(0 0 34px rgba(218, 70, 174, .46));
  transform: translateX(-50%) translateY(-3px) scale(1.025);
}

.entry-primary:hover .entry-primary__hero-copy,
.entry-primary:focus-visible .entry-primary__hero-copy {
  filter: brightness(1.13) saturate(1.08);
  transform: translateX(-50%) translateY(-2px);
}

.entry-telegram {
  position: relative;
  display: grid;
  width: 100%;
  min-height: 52px;
  padding: 0 4px;
  grid-template-columns: 38px 1fr 34px;
  align-items: center;
  gap: 11px;
  border: 0;
  border-top: 1px solid rgba(236, 188, 85, .17);
  border-bottom: 1px solid rgba(159, 104, 192, .16);
  border-radius: 0;
  color: #f4e9f8;
  background: linear-gradient(90deg, transparent, rgba(44, 17, 58, .24), transparent);
  box-shadow: none;
  text-decoration: none;
  transition: border-color .22s ease, background .22s ease, transform .22s ease;
}

.entry-telegram:hover,
.entry-telegram:focus-visible {
  border-color: rgba(232, 194, 112, .48);
  background: linear-gradient(90deg, transparent, rgba(69, 28, 85, .48), transparent);
  transform: translateY(-1px);
}

.entry-telegram__icon {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(116, 190, 237, .28);
  border-radius: 50%;
  color: #8bcdf7;
  background: rgba(44, 135, 195, .1);
}

.entry-telegram__icon svg { width: 18px; height: 18px; fill: currentColor; }
.entry-telegram__copy { display: flex; flex-direction: column; gap: 4px; }

.entry-telegram__copy small {
  color: rgba(219, 200, 229, .48);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.entry-telegram__copy strong {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.entry-telegram__arrow {
  color: rgba(196, 157, 215, .6);
  font-size: 14px;
  transition: transform .22s ease;
}

.entry-telegram:hover .entry-telegram__arrow,
.entry-telegram:focus-visible .entry-telegram__arrow { transform: translate(2px, -2px); }

.entry-panel__legal {
  margin: 0;
  color: rgba(225, 207, 216, .38);
  font-size: 7px;
  font-weight: 650;
  letter-spacing: .025em;
  line-height: 1.35;
}

.entry-panel__social {
  display: grid;
  margin-top: 11px;
  padding-top: 10px;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 9px;
  border-top: 0;
}

.entry-panel__legal { order: 2; }

body .entry-panel .social-links {
  position: static !important;
  display: flex !important;
  width: 100% !important;
  margin: 0 !important;
  justify-content: center !important;
  gap: 8px !important;
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: none !important;
}

body.is-cue-arrived .entry-panel .social-links,
.hero.is-cta-visible .entry-panel .social-links {
  transform: none !important;
}

.entry-panel .social-link {
  display: grid !important;
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px !important;
  border-color: rgba(225, 174, 63, .46);
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  animation: none !important;
  transition:
    color .36s ease,
    border-color .36s ease,
    background-color .36s ease,
    box-shadow .36s ease,
    transform .36s cubic-bezier(.16, 1, .3, 1) !important;
}

.entry-panel .social-link:nth-child(1) { --social-index: 0; }
.entry-panel .social-link:nth-child(2) { --social-index: 1; }
.entry-panel .social-link:nth-child(3) { --social-index: 2; }
.entry-panel .social-link:nth-child(4) { --social-index: 3; }
.entry-panel .social-link:nth-child(5) { --social-index: 4; }
.entry-panel .social-link:nth-child(6) { --social-index: 5; }
.entry-panel .social-link:nth-child(7) { --social-index: 6; }
.entry-panel .social-link:nth-child(8) { --social-index: 7; }

.entry-panel .social-link::before {
  opacity: .38;
  transform: scale(.92);
  transition: opacity .36s ease, transform .36s cubic-bezier(.16, 1, .3, 1);
}

.entry-panel .social-link svg {
  width: 16px !important;
  height: 16px !important;
  transform: none;
  transition: transform .36s cubic-bezier(.16, 1, .3, 1);
}

.entry-panel .social-link:hover,
.entry-panel .social-link:focus-visible {
  color: #fff1bf;
  border-color: rgba(255, 216, 118, .92);
  box-shadow: 0 0 0 1px rgba(211, 57, 164, .56), 0 0 18px rgba(221, 60, 166, .25);
  transform: translate3d(0, -2px, 0) !important;
}

.entry-panel .social-link:hover::before,
.entry-panel .social-link:focus-visible::before {
  opacity: .76;
  transform: scale(1.02);
}

.entry-panel .social-link:hover svg,
.entry-panel .social-link:focus-visible svg {
  transform: translateY(-1px) scale(1.06);
}

.entry-panel .social-link[data-link-key="STEAM"],
.entry-panel .social-link[data-link-key="KICK"] { display: none !important; }

.hero.is-cta-visible .cta-reveal,
body.is-cue-arrived .cta-reveal {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}

.hero.is-cta-visible .entry-panel,
body.is-cue-arrived .entry-panel {
  animation: entry-panel-in .62s cubic-bezier(.16, 1, .3, 1) both;
}

@keyframes entry-rail-in {
  to { opacity: 1; transform: translate3d(-50%, 0, 0); }
}

@keyframes entry-panel-in {
  from { opacity: 0; transform: translate3d(0, 14px, 0) scale(.98); }
  to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
}

@keyframes entry-live {
  50% { opacity: .52; transform: scale(.78); }
}

@keyframes entry-primary-aura {
  0%, 100% { opacity: .62; transform: scale(.94); }
  50% { opacity: .96; transform: scale(1.04); }
}

@keyframes entry-device-car {
  0%, 100% { transform: translate3d(-50%, 3px, 0) scale(.985); }
  46% { transform: translate3d(-50%, -5px, 0) scale(1.012); }
  74% { transform: translate3d(-50%, 1px, 0) scale(1.002); }
}

@keyframes entry-device-left {
  0%, 100% { transform: translate3d(-5px, 4px, 0) rotate(-11.5deg) scale(.985); }
  38% { transform: translate3d(10px, -12px, 0) rotate(-7.5deg) scale(1.035); }
  72% { transform: translate3d(3px, 3px, 0) rotate(-10deg) scale(1.01); }
}

@keyframes entry-device-right {
  0%, 100% { transform: translate3d(6px, -1px, 0) rotate(8deg) scale(.99); }
  45% { transform: translate3d(-11px, -11px, 0) rotate(4.5deg) scale(1.03); }
  76% { transform: translate3d(-3px, 5px, 0) rotate(6.5deg) scale(1.008); }
}

@keyframes entry-device-watch {
  0%, 100% { transform: translate3d(1px, 2px, 0) rotate(9deg) scale(.99); }
  48% { transform: translate3d(-4px, -6px, 0) rotate(6deg) scale(1.025); }
}

@media (max-width: 900px), (any-pointer: coarse) {
  .action-rail {
    top: max(12px, env(safe-area-inset-top));
    width: calc(100vw - 20px);
    min-height: 42px;
    padding: 0 2px;
    grid-template-columns: auto 1fr;
    gap: 18px;
    border-radius: 0;
  }

  .action-rail::before { display: none; }
  .action-rail__brand::after { width: 18px; }

  .action-rail__brand small,
  .action-rail__status { display: none; }

  .action-rail__routes { gap: 15px; }

  .action-rail__entry,
  .action-rail__miniapp {
    min-height: 36px;
    padding: 0;
    border-radius: 0;
    font-size: 7px;
    letter-spacing: .09em;
  }

  .action-rail__miniapp i { display: none; }

  .scroll-cue {
    width: auto !important;
    height: auto !important;
    min-width: 0;
    min-height: 0 !important;
    aspect-ratio: auto !important;
    padding: 4px 6px 4px 4px !important;
  }

  .scroll-cue__indicator { width: 32px; height: 32px; }

  .hero__content {
    width: 100% !important;
    max-width: none !important;
    padding: 0 10px;
  }

  .cta-reveal {
    width: min(430px, calc(100vw - 18px)) !important;
  }

  .entry-panel {
    width: min(350px, calc(100vw - 30px));
    padding: 0;
    border-radius: 0;
  }
  .entry-panel__path { padding-top: 0; }
  .entry-panel__path + .entry-panel__path { margin-top: 8px; }

  .mega-cta.entry-primary {
    width: min(410px, 100%) !important;
    height: 390px !important;
    min-height: 390px !important;
    margin-bottom: 6px !important;
  }

  .entry-primary__glow { inset: 8% 12% 10% !important; }
  .entry-primary__device--iphone {
    top: 120px;
    left: 55px;
    width: 70px !important;
    height: 100px;
  }
  .entry-primary__device--iphone img { width: 84px; }
  .entry-primary__device--macbook {
    top: 115px;
    right: 50px;
    width: 88px !important;
    height: 90px;
  }
  .entry-primary__device--macbook img { width: 124px; }
  .entry-primary__device--porsche {
    top: 94px;
    width: 260px !important;
    height: 118px;
  }
  .entry-primary__device--porsche img { width: 260px; }
  html.arara-mobile-lite .entry-primary__device {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
  }
  html.arara-mobile-lite .entry-primary__device--iphone { transform: rotate(-6deg) !important; }
  html.arara-mobile-lite .entry-primary__device--macbook { transform: rotate(5deg) !important; }
  html.arara-mobile-lite .entry-primary__device--porsche {
    opacity: .9 !important;
    transform: translateX(-50%) !important;
  }
  .entry-primary__hero { top: 0; width: 220px; max-width: 61%; transform: translateX(-50%); }
  .entry-primary:hover .entry-primary__hero,
  .entry-primary:focus-visible .entry-primary__hero { transform: translateX(-50%) translateY(-2px) scale(1.02); }
  .entry-primary__campaign { top: 240px !important; width: min(270px, 68%); gap: 5px; }
  .entry-primary__campaign > strong { font-size: 18px; }
  .entry-primary__campaign > small { gap: 8px; font-size: 6.5px; }
  .entry-primary__prizes { top: 280px !important; max-width: 88%; gap: 9px; font-size: 7px !important; }
  .entry-primary__hero-copy {
    bottom: 1px;
    width: min(290px, 72%) !important;
    min-height: 40px;
    padding: 0 17px;
    gap: 10px;
  }
  .entry-primary__hero-copy strong { font-size: 9px; }

  .entry-telegram {
    min-height: 48px;
    grid-template-columns: 34px 1fr 28px;
    gap: 9px;
    border-radius: 0;
  }

  .entry-telegram__icon { width: 32px; height: 32px; border-radius: 7px; }
  .entry-panel__legal { margin: 0; }
  .entry-panel__social { margin-top: 9px; padding-top: 6px; gap: 8px; }
  .entry-panel__social { grid-template-columns: 1fr; }
  body .entry-panel .social-links {
    justify-content: center !important;
    transform: none !important;
  }
  .entry-panel .social-link { width: 32px !important; height: 32px !important; flex-basis: 32px !important; }
}

@media (max-width: 365px), (max-height: 700px) and (max-width: 900px) {
  .entry-panel { padding: 0; }
  .entry-panel__path { padding-top: 0; }
  .entry-panel__path + .entry-panel__path { margin-top: 6px; }
  .mega-cta.entry-primary { height: 365px !important; min-height: 365px !important; }
  .entry-primary__device--iphone {
    top: 115px;
    left: 45px;
    width: 65px !important;
    height: 92px;
  }
  .entry-primary__device--iphone img { width: 76px; }
  .entry-primary__device--macbook {
    top: 110px;
    right: 42px;
    width: 80px !important;
    height: 82px;
  }
  .entry-primary__device--macbook img { width: 112px; }
  .entry-primary__device--porsche {
    top: 90px;
    width: 235px !important;
    height: 106px;
  }
  .entry-primary__device--porsche img { width: 235px; }
  .entry-primary__hero { top: 0; width: 205px; transform: translateX(-50%); }
  .entry-primary:hover .entry-primary__hero,
  .entry-primary:focus-visible .entry-primary__hero { transform: translateX(-50%) translateY(-2px) scale(1.015); }
  .entry-primary__campaign { top: 225px !important; }
  .entry-primary__campaign > strong { font-size: 16px; }
  .entry-primary__prizes { top: 263px !important; gap: 6px; font-size: 5.5px !important; }
  .entry-primary__hero-copy { min-height: 36px; }
  .entry-primary__hero-copy strong { font-size: 8px; }
  .entry-telegram { min-height: 46px; }
  .entry-panel__legal { display: none; }
  .entry-panel__social { margin-top: 8px; padding-top: 8px; }
  .entry-panel .social-link { width: 29px !important; height: 29px !important; flex-basis: 29px !important; }
}

/* Frozen desktop composition captured from the local layout editor. */
@media (min-width: 901px) {
  .entry-primary__hero,
  .entry-primary__device,
  .entry-primary__campaign,
  .entry-primary__prizes,
  .entry-primary__hero-copy {
    right: auto !important;
    bottom: auto !important;
    margin: 0 !important;
    max-width: none !important;
  }

  .entry-primary__hero {
    top: 31.95% !important;
    left: 22.7% !important;
    width: 54.6% !important;
    height: 35.1% !important;
    object-fit: contain;
    transform: none !important;
  }

  .entry-primary__device {
    overflow: visible !important;
    transform: none;
  }

  .entry-primary__device > img {
    position: absolute !important;
    inset: -25% !important;
    width: 150% !important;
    max-width: none !important;
    height: 150% !important;
    object-fit: contain !important;
  }

  .entry-primary__device--iphone {
    top: 35% !important;
    left: 8% !important;
    width: 17% !important;
    height: 29% !important;
    animation: entry-frozen-float-left 7.2s cubic-bezier(.45, 0, .55, 1) infinite;
  }

  .entry-primary__device--iphone > img {
    transform: rotate(-8deg) !important;
  }

  .entry-primary__device--porsche {
    top: 0 !important;
    left: 13% !important;
    width: 74% !important;
    height: 44% !important;
    animation: entry-frozen-float-car 8.8s .25s cubic-bezier(.45, 0, .55, 1) infinite;
  }

  .entry-primary__device--porsche > img {
    transform: none !important;
  }

  .entry-primary__device--macbook {
    top: 36% !important;
    left: 76% !important;
    width: 19% !important;
    height: 27% !important;
    animation: entry-frozen-float-right 7.7s .55s cubic-bezier(.45, 0, .55, 1) infinite;
  }

  .entry-primary__device--macbook > img {
    transform: rotate(6deg) !important;
  }

  .entry-primary__device--rolex {
    top: 52% !important;
    left: 67% !important;
    width: 8.5% !important;
    height: 15% !important;
    animation: entry-frozen-float-watch 8.2s .8s cubic-bezier(.45, 0, .55, 1) infinite;
  }

  .entry-primary__device--rolex > img {
    transform: rotate(10deg) !important;
  }

  .entry-primary__campaign {
    top: 66% !important;
    left: 27% !important;
    width: 46% !important;
    height: 7.5% !important;
    transform: none !important;
  }

  .entry-primary__prizes {
    top: 75% !important;
    left: 19% !important;
    width: 62% !important;
    height: 1.765% !important;
    transform: none !important;
  }

  .entry-primary__hero-copy {
    top: 82.5% !important;
    left: 23% !important;
    width: 54% !important;
    height: 9% !important;
    transform: none !important;
  }
}

.entry-primary__hero-copy {
  grid-template-columns: 28px minmax(0, 1fr) 28px;
  text-align: center;
}

.entry-primary__hero-copy > strong {
  grid-column: 2;
}

.entry-primary__hero-copy > i {
  grid-column: 3;
  justify-self: center;
}

.entry-telegram {
  grid-template-columns: 38px minmax(0, 1fr) 38px;
}

.entry-telegram__icon,
.entry-telegram__arrow {
  justify-self: center;
}

.entry-telegram__copy {
  min-width: 0;
  align-items: center;
  text-align: center;
}

@media (max-width: 900px), (any-pointer: coarse) {
  .mega-cta.entry-primary {
    height: 400px !important;
    min-height: 400px !important;
  }

  .entry-primary__hero {
    top: 100px !important;
    left: 50% !important;
    width: 247px !important;
    max-width: 78% !important;
    height: auto !important;
    transform: translateX(-50%) !important;
  }

  .entry-primary__device--porsche {
    top: 0 !important;
    left: 50% !important;
    width: 250px !important;
    height: 118px !important;
    transform: translateX(-50%) !important;
  }

  .entry-primary__device--porsche > img {
    width: min(375px, calc(100vw - 18px)) !important;
  }

  .entry-primary__device--iphone {
    top: 130px !important;
    left: 56px !important;
    width: 60px !important;
    height: 95px !important;
    transform: rotate(-9deg) !important;
  }

  .entry-primary__device--iphone > img {
    width: 102px !important;
  }

  html.arara-mobile-lite .entry-primary__device--iphone {
    transform: rotate(-9deg) !important;
  }

  .entry-primary__device--macbook {
    top: 132px !important;
    right: 45px !important;
    left: auto !important;
    width: 82px !important;
    height: 78px !important;
    transform: rotate(7deg) !important;
  }

  .entry-primary__device--macbook > img {
    width: 156px !important;
  }

  html.arara-mobile-lite .entry-primary__device--macbook {
    transform: rotate(7deg) !important;
  }

  .entry-primary__device--rolex {
    top: 185px !important;
    right: 65px !important;
    left: auto !important;
    width: 42px !important;
    height: 50px !important;
    transform: rotate(10deg) !important;
  }

  .entry-primary__device--rolex > img {
    width: 72px !important;
  }

  html.arara-mobile-lite .entry-primary__device--rolex {
    transform: rotate(10deg) !important;
  }

  .entry-primary__campaign {
    top: 230px !important;
    left: 50% !important;
    width: min(278px, 72%) !important;
    height: auto !important;
    transform: translateX(-50%) !important;
  }

  .entry-primary__prizes {
    top: 268px !important;
    left: 50% !important;
    width: max-content !important;
    height: auto !important;
    transform: translateX(-50%) !important;
  }

  .entry-primary__hero-copy {
    top: auto !important;
    right: auto !important;
    bottom: 2px !important;
    left: 50% !important;
    width: min(314px, 82%) !important;
    height: auto !important;
    transform: translateX(-50%) !important;
  }
}

@media (max-width: 365px) {
  .mega-cta.entry-primary {
    height: 380px !important;
    min-height: 380px !important;
  }

  .entry-primary__hero {
    top: 90px !important;
    width: 286px !important;
  }

  .entry-primary__device--porsche {
    top: 12px !important;
    width: 286px !important;
    height: 138px !important;
  }

  .entry-primary__device--iphone {
    top: 123px !important;
    left: 35.5px !important;
    width: 75px !important;
    height: 116px !important;
  }

  .entry-primary__device--iphone > img {
    width: 123px !important;
  }

  .entry-primary__device--macbook {
    top: 121px !important;
    right: 25px !important;
    width: 96px !important;
    height: 98px !important;
  }

  .entry-primary__device--macbook > img {
    width: 145px !important;
  }

  .entry-primary__device--rolex {
    top: 165px !important;
    right: 48px !important;
    width: 50px !important;
    height: 64px !important;
  }

  .entry-primary__device--rolex > img {
    width: 93px !important;
  }

  .entry-primary__campaign {
    top: 246px !important;
  }

  .entry-primary__prizes {
    top: 284px !important;
  }
}

@keyframes entry-frozen-float-car {
  0%, 100% { transform: translate3d(0, 2px, 0) scale(.992); }
  48% { transform: translate3d(0, -5px, 0) scale(1.008); }
}

@keyframes entry-frozen-float-left {
  0%, 100% { transform: translate3d(-2px, 3px, 0); }
  50% { transform: translate3d(5px, -6px, 0); }
}

@keyframes entry-frozen-float-right {
  0%, 100% { transform: translate3d(2px, 2px, 0); }
  50% { transform: translate3d(-5px, -5px, 0); }
}

@keyframes entry-frozen-float-watch {
  0%, 100% { transform: translate3d(1px, 2px, 0) rotate(10deg); }
  50% { transform: translate3d(-3px, -5px, 0) rotate(7deg); }
}

.arara-cursor-fly {
  position: fixed;
  z-index: 2147483000;
  top: 0;
  left: 0;
  display: block;
  width: clamp(86px, 7.4vw, 112px);
  height: auto;
  pointer-events: none;
  user-select: none;
  image-rendering: pixelated;
  image-rendering: crisp-edges;
  transform: translate3d(-220px, -220px, 0);
  transform-origin: 50% 52%;
  will-change: transform;
  contain: layout paint style;
}

.arara-cursor-fly[hidden] {
  display: none;
}

@media (max-width: 900px), (hover: none), (pointer: coarse) {
  .arara-cursor-fly { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
  .arara-cursor-fly { display: none !important; }

  .action-rail,
  .entry-panel,
  .entry-primary__device,
  .entry-primary__glow,
  .entry-panel .social-link {
    animation: none !important;
    opacity: 1;
    transform: none !important;
  }
}
