:root {
  --bg: #050815;
  --bg2: #07142b;

  --cyan: #20f7ff;
  --blue: #176dff;
  --purple: #793bff;
  --pink: #ff2bd6;
  --yellow: #ffe45c;

  --textDark: #061018;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  font-family: system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

.page {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  padding: 18px 0;
  background:
    radial-gradient(900px 700px at 15% 10%, rgba(32, 247, 255, .14), transparent 55%),
    radial-gradient(900px 700px at 85% 25%, rgba(255, 43, 214, .12), transparent 55%),
    linear-gradient(180deg, var(--bg), var(--bg2));
}

.posterWrap {
  width: min(520px, 100vw);
  border-radius: 18px;
  overflow: hidden;
  background: #000;
  box-shadow: 0 30px 120px rgba(0, 0, 0, .6);
  position: relative;
  padding-bottom: 118px;
}

.posterImg {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
  -webkit-user-drag: none;
}

.cta {
  position: fixed;
  left: 50%;
  bottom: 16px;
  width: min(520px, 92vw);
  height: 74px;
  z-index: 50;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 999px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;

  font-weight: 1000;
  font-size: 26px;
  letter-spacing: .25px;
  color: var(--textDark);

  background:
    radial-gradient(120% 180% at 20% 0%, rgba(255,255,255,.38), transparent 45%),
    linear-gradient(
      90deg,
      var(--cyan) 0%,
      var(--blue) 34%,
      var(--purple) 66%,
      var(--pink) 100%
    );

  border: 1px solid rgba(255,255,255,.25);

  box-shadow:
    0 18px 70px rgba(0,0,0,.60),
    0 0 0 3px rgba(32,247,255,.22) inset,
    0 0 0 7px rgba(255,43,214,.15) inset,
    0 0 24px rgba(32,247,255,.35);

  transform: translateX(-50%);
  transition: transform .22s ease, opacity .22s ease, filter .22s ease;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 999px;
  background: linear-gradient(
    110deg,
    transparent 0%,
    rgba(255,255,255,.72) 22%,
    rgba(255,255,255,.18) 42%,
    transparent 62%
  );
  transform: translateX(-60%);
  opacity: .75;
  filter: blur(1px);
  animation: shine 2.1s ease-in-out infinite;
  pointer-events: none;
  mix-blend-mode: overlay;
}

@keyframes shine {
  0% { transform: translateX(-60%); opacity: .35; }
  40% { opacity: .95; }
  100% { transform: translateX(65%); opacity: .42; }
}

@keyframes cyberPulse {
  0% {
    transform: translateX(-50%) scale(1);
    filter: brightness(1);
  }

  50% {
    transform: translateX(-50%) scale(1.035);
    filter: brightness(1.12);
  }

  100% {
    transform: translateX(-50%) scale(1);
    filter: brightness(1);
  }
}

.cta.pulse {
  animation: cyberPulse 2.6s ease-in-out infinite;
}

.cta:active {
  transform: translateX(-50%) scale(.992);
  filter: brightness(1.10);
}

@media (prefers-reduced-motion: reduce) {
  .cta::before,
  .cta.pulse {
    animation: none;
  }
}