:root {
  color-scheme: dark;
  --bg: #030305;
  --bg-elevated: rgba(10, 12, 18, 0.72);
  --panel: rgba(14, 17, 26, 0.82);
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.18);
  --text: #f4f6fb;
  --muted: #9aa3b8;
  --purple-light: #b8b0c8;
  --purple-mid: #8a8498;
  --purple-deep: #5c5668;
  --purple-dark: #3a3644;
  --purple-glow: rgba(138, 132, 152, 0.22);
  --gold: var(--purple-light);
  --gold-soft: rgba(184, 176, 200, 0.08);
  --cyan: #6eb8c4;
  --cyan-soft: rgba(110, 184, 196, 0.1);
  --green: #7ec9a0;
  --red: var(--purple-mid);
  --violet: var(--purple-deep);
  --violet-light: var(--purple-light);
  --violet-deep: var(--purple-dark);
  --pika: var(--purple-mid);
  --pika-soft: rgba(138, 132, 152, 0.1);
  --player-h: 56px;
  --player-h-mini: 44px;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
  --font-display: "Syne", "Noto Sans TC", sans-serif;
  --font-body: "Noto Sans TC", "Microsoft JhengHei", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding-top: var(--player-h);
  padding-bottom: 110px;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

.player-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--player-h);
  padding: 8px clamp(14px, 3vw, 28px);
  border-bottom: 1px solid var(--line);
  background: rgba(12, 13, 18, 0.94);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  transition: min-height 320ms ease, padding 320ms ease;
}

.player-bar.is-playing {
  min-height: var(--player-h-mini);
}

.player-bar--await .player-bar__btn--play {
  animation: play-pulse 1.6s ease-in-out infinite;
}

@media (pointer: fine) {
  .player-bar--await {
    border-bottom-color: rgba(184, 176, 200, 0.45);
    box-shadow:
      0 4px 32px rgba(138, 132, 152, 0.28),
      inset 0 1px 0 rgba(255, 255, 255, 0.06);
    background: rgba(14, 16, 24, 0.98);
  }

  .player-bar--await .player-bar__disc {
    background: rgba(184, 176, 200, 0.28);
    color: var(--purple-light);
    box-shadow: 0 0 16px rgba(184, 176, 200, 0.35);
  }

  .player-bar--await .player-bar__status {
    color: rgba(220, 227, 240, 0.92);
    font-weight: 500;
  }

  .player-bar--await .player-bar__btn--play {
    background: rgba(184, 176, 200, 0.22);
    border: 1px solid rgba(184, 176, 200, 0.42);
  }

  .player-bar--await .player-bar__viz {
    opacity: 0.55;
  }
}

.player-bar.is-muted {
  background: rgba(10, 10, 14, 0.96);
  border-bottom-color: var(--line);
}

.player-bar__track {
  margin-top: 6px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
  opacity: 0;
  transition: opacity 280ms ease;
}

.player-bar.is-playing .player-bar__track {
  opacity: 1;
}

.player-bar__progress {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple-mid), var(--purple-deep));
  transition: width 120ms linear;
}

.player-bar__art {
  flex-shrink: 0;
}

.player-bar__disc {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(184, 176, 200, 0.18);
  color: var(--muted);
  font-size: 16px;
  font-weight: 900;
  box-shadow: none;
  animation: disc-spin 4s linear infinite;
  animation-play-state: paused;
}

.player-bar.is-playing .player-bar__disc {
  animation-play-state: running;
}

.player-bar__meta {
  flex: 1;
  min-width: 0;
}

.player-bar__title {
  display: block;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  color: #dce3f0;
  line-height: 1.2;
}

.player-bar__status {
  display: block;
  margin-top: 2px;
  color: rgba(244, 246, 251, 0.72);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.player-bar.is-playing .player-bar__status {
  color: rgba(184, 176, 200, 0.75);
}

.player-bar__viz {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 22px;
  opacity: 0.28;
  transition: opacity 280ms ease;
}

.player-bar.is-playing .player-bar__viz {
  opacity: 0.7;
}

.player-bar__viz i {
  display: block;
  width: 3px;
  height: 8px;
  border-radius: 999px;
  background: var(--purple-mid);
}

.player-bar.is-playing .player-bar__viz i:nth-child(1) { animation: eq 0.8s ease-in-out infinite; }
.player-bar.is-playing .player-bar__viz i:nth-child(2) { animation: eq 0.7s ease-in-out infinite 0.1s; }
.player-bar.is-playing .player-bar__viz i:nth-child(3) { animation: eq 0.9s ease-in-out infinite 0.2s; }
.player-bar.is-playing .player-bar__viz i:nth-child(4) { animation: eq 0.75s ease-in-out infinite 0.15s; }
.player-bar.is-playing .player-bar__viz i:nth-child(5) { animation: eq 0.85s ease-in-out infinite 0.05s; }

.player-bar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.player-bar__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.player-bar__btn--play {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  width: 34px;
  padding: 0;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text);
  box-shadow: none;
  z-index: 0;
}

.player-bar__btn--play:hover {
  transform: scale(1.04);
  background: rgba(255, 255, 255, 0.14);
}

.player-bar.is-playing .player-bar__btn--play {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-color: var(--line);
}

.player-bar__btn--ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--muted);
}

.player-bar__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-strong);
  color: var(--text);
}

.player-bar.is-muted .player-bar__btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

@keyframes disc-spin {
  to { transform: rotate(360deg); }
}

@keyframes play-pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.08);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(255, 255, 255, 0);
    transform: scale(1.04);
  }
}

@keyframes eq {
  0%, 100% { height: 6px; opacity: 0.5; }
  50% { height: 22px; opacity: 1; }
}

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

img {
  display: block;
  max-width: 100%;
}

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

.ambient__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 15%, black, transparent 80%);
}

.ambient__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  animation: drift 16s ease-in-out infinite;
}

.ambient__orb--purple {
  top: -6%;
  left: 10%;
  width: 480px;
  height: 480px;
  background: rgba(90, 86, 104, 0.08);
}

.ambient__orb--cyan {
  top: 32%;
  right: -8%;
  width: 560px;
  height: 560px;
  background: rgba(77, 232, 255, 0.09);
  animation-delay: -5s;
}

.ambient__orb--violet {
  bottom: 6%;
  left: 38%;
  width: 420px;
  height: 420px;
  background: rgba(139, 108, 255, 0.11);
  animation-delay: -9s;
}

.ambient__spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--purple-mid);
  box-shadow: none;
  opacity: 0.35;
  animation: spark-float 6s ease-in-out infinite;
}

.ambient__spark--1 { top: 18%; left: 72%; animation-delay: 0s; }
.ambient__spark--2 { top: 55%; left: 8%; animation-delay: -2s; }
.ambient__spark--3 { top: 78%; left: 58%; animation-delay: -4s; }

.page-shell {
  position: relative;
}

.hero {
  position: relative;
  min-height: 100svh;
  padding: 24px clamp(18px, 4vw, 72px) 56px;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background:
    linear-gradient(180deg, transparent, rgba(3, 3, 5, 0.85) 60%, var(--bg)),
    repeating-linear-gradient(90deg, transparent 0 54px, rgba(94, 242, 168, 0.06) 55px 56px);
  transform: perspective(900px) rotateX(58deg);
  transform-origin: bottom;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: min(1240px, 100%);
  margin: 0 auto 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 800;
}

.brand__logo {
  width: 96px;
  filter: brightness(0) invert(1);
}

.brand span {
  color: #dbe7ff;
  font-size: 13px;
  letter-spacing: 0.06em;
}

.topbar__link,
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.topbar__link {
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
}

.topbar__link--register,
.btn--primary {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid var(--line-strong);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  color: var(--text);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.28);
}

.topbar__link--register::before,
.btn--primary::before,
.promo-strip__item::before,
.activity-card::before,
.player-bar__btn--play::before,
.btn--glass::before {
  content: "";
  position: absolute;
  inset: -30%;
  z-index: 0;
  background: url("/assets/football-energy.gif") center / cover no-repeat;
  opacity: 0.2;
  filter: saturate(1.15) contrast(1.05);
  pointer-events: none;
  animation: shine-bg-drift 7s ease-in-out infinite alternate;
}

.topbar__link--register::after,
.btn--primary::after,
.promo-strip__item::after,
.activity-card::after,
.player-bar__btn--play::after,
.btn--glass::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.22) 46%,
    rgba(255, 255, 255, 0.55) 50%,
    rgba(255, 255, 255, 0.22) 54%,
    transparent 62%,
    transparent 100%
  );
  background-size: 240% 100%;
  pointer-events: none;
  animation: shine-sweep 2.6s ease-in-out infinite;
}

.promo-strip__item::before,
.activity-card::before {
  opacity: 0;
  transition: opacity 280ms ease;
}

.promo-strip__item::after,
.activity-card::after {
  animation-play-state: paused;
  opacity: 0;
  transition: opacity 280ms ease;
}

.promo-strip__item:hover::before,
.activity-card:hover::before {
  opacity: 0.14;
}

.promo-strip__item:hover::after,
.activity-card:hover::after {
  opacity: 1;
  animation-play-state: running;
}

.player-bar__btn--play::before {
  opacity: 0.28;
}

.btn--glass::before {
  opacity: 0.12;
}

.btn--glass::after {
  opacity: 0.65;
  animation-duration: 3.2s;
}

.topbar__link--register > *,
.btn--primary > *,
.btn--glass > * {
  position: relative;
  z-index: 2;
}

.btn--primary:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.36);
  border-color: rgba(255, 255, 255, 0.22);
}

@keyframes shine-sweep {
  0%, 100% {
    background-position: 180% 0;
  }
  50% {
    background-position: -80% 0;
  }
}

@keyframes shine-bg-drift {
  0%, 100% {
    transform: scale(1) translate(0, 0);
  }
  50% {
    transform: scale(1.08) translate(-2%, -1%);
  }
}

.btn--glass {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(18px);
}

.btn--xl {
  min-height: 58px;
  padding-inline: 32px;
  font-size: 17px;
}

.btn:hover,
.topbar__link:hover,
.activity-card:hover,
.promo-strip__item:hover {
  transform: translateY(-3px);
}
.hero__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.95fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: center;
  width: min(1240px, 100%);
  margin: 0 auto;
  min-height: calc(100svh - 120px);
}

.hero__copy {
  position: relative;
  z-index: 2;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.03em;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(44px, 6.5vw, 88px);
  line-height: 0.95;
}

h1 em {
  font-style: normal;
  color: #e2e6ef;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.06;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

p {
  margin-top: 0;
  color: var(--muted);
}

.hero__lead {
  max-width: 520px;
  margin-bottom: 24px;
  color: #d4dced;
  font-size: clamp(16px, 1.8vw, 19px);
}

.hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.chip {
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce3f0;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(12px);
}

.chip--light {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: #dce3f0;
}

.chip--deep {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  color: #c8d0e0;
}

.chip--accent {
  border-color: rgba(184, 176, 200, 0.22);
  background: var(--pika-soft);
  color: #b8b0c8;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.start-flow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #c8d0e0;
  font-size: 13px;
  font-weight: 700;
}

.start-flow i {
  width: 24px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), transparent);
}

.hero__visual {
  position: relative;
  min-height: 520px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
  transition: transform 400ms ease;
}

.hero__gif-ring {
  position: absolute;
  left: -8%;
  top: 8%;
  width: 42%;
  z-index: 1;
}

.gif-frame {
  position: relative;
  aspect-ratio: 1;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow:
    0 0 0 10px rgba(255, 255, 255, 0.02),
    0 24px 80px rgba(0, 0, 0, 0.55),
    0 0 70px rgba(77, 232, 255, 0.18);
  animation: float-soft 5s ease-in-out infinite;
}

.gif-frame__ring {
  position: absolute;
  inset: -10%;
  border: 1px dashed rgba(77, 232, 255, 0.35);
  border-radius: 999px;
  animation: spin-ring 14s linear infinite;
}

.gif-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.2) contrast(1.08);
}

.hero__endorser {
  position: absolute;
  right: 0;
  top: 0;
  width: 78%;
  z-index: 2;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow);
  transform: rotate(2deg);
  transition: transform 400ms ease;
}

.hero__endorser:hover {
  transform: rotate(0deg) scale(1.01);
}

.hero__endorser img {
  width: 100%;
}

.hero__endorser-tag {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: rgba(3, 3, 5, 0.82);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
}

.hero__endorser-tag span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero__endorser-tag strong {
  display: block;
  font-family: var(--font-display);
  font-size: 20px;
}

.hero__pika {
  position: absolute;
  left: 4%;
  bottom: 0;
  width: 52%;
  z-index: 4;
  overflow: visible;
  transition: transform 300ms ease;
}

.hero__pika:hover {
  transform: translateY(-6px) rotate(-1deg);
}

.pika-sparks {
  position: absolute;
  inset: -12%;
  pointer-events: none;
}

.pika-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-mid);
  box-shadow: none;
  opacity: 0.5;
}

.pika-spark--1 { top: 10%; left: 20%; animation: spark-float 3s ease-in-out infinite; }
.pika-spark--2 { top: 30%; right: 8%; animation: spark-float 3.6s ease-in-out infinite -1s; }
.pika-spark--3 { bottom: 20%; left: 40%; animation: spark-float 4s ease-in-out infinite -2s; }

.pika-bounce {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line-strong);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  animation: pika-bounce 3.2s ease-in-out infinite;
}

.pika-bounce img {
  width: 100%;
}

.pika-label {
  display: block;
  margin-top: 10px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.promo-strip {
  display: flex;
  gap: 12px;
  width: min(1240px, calc(100% - 40px));
  margin: -20px auto 0;
  padding-bottom: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.promo-strip::-webkit-scrollbar {
  display: none;
}

.promo-strip__item {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  flex: 1 0 140px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 16, 0.78);
  backdrop-filter: blur(20px);
  transition: transform 220ms ease, border-color 220ms ease;
}

.promo-strip__item strong,
.promo-strip__item span {
  position: relative;
  z-index: 2;
}

.promo-strip__item:hover {
  border-color: var(--line-strong);
}

.promo-strip__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 28px;
  color: #e2e6ef;
  line-height: 1;
}

.promo-strip__item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.activities,
.brand-cinema,
.channel-preview,
.final-cta,
.footer {
  width: min(1240px, calc(100% - 40px));
  margin-inline: auto;
}

.section-head {
  margin: 96px 0 36px;
  max-width: 640px;
}

.section-head__note {
  font-size: 13px;
}

.section-head__note a {
  color: #b8b0c8;
  border-bottom: 1px solid rgba(184, 176, 200, 0.28);
}

.activity-deck {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.015)),
    rgba(8, 10, 16, 0.78);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
  transition: transform 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.activity-card__body,
.activity-card__visual {
  position: relative;
  z-index: 2;
}

.activity-card:hover {
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.62);
}

.activity-card--hero {
  grid-column: span 7;
  flex-direction: row;
  min-height: 280px;
}

.activity-card:not(.activity-card--hero) {
  grid-column: span 5;
}

.activity-card:nth-child(2),
.activity-card:nth-child(4),
.activity-card:nth-child(6) {
  transform: rotate(-0.6deg);
}

.activity-card:nth-child(3),
.activity-card:nth-child(5) {
  transform: rotate(0.6deg);
}

.activity-card:hover {
  transform: rotate(0deg) translateY(-4px);
}

.activity-card__visual {
  position: relative;
  flex: 0 0 42%;
  min-height: 220px;
  background:
    radial-gradient(circle at 30% 30%, rgba(138, 132, 152, 0.08), transparent 55%),
    radial-gradient(circle at 70% 70%, rgba(139, 108, 255, 0.15), transparent 50%),
    #0a0c12;
}

.activity-card__visual--pika {
  overflow: hidden;
}

.pika-orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.pika-orbit__img {
  width: 88%;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45);
  animation: pika-bounce 3.5s ease-in-out infinite;
}

.pika-orbit__bolt {
  position: absolute;
  font-size: 22px;
  filter: drop-shadow(0 0 8px var(--pika));
  animation: bolt-flash 2s ease-in-out infinite;
}

.pika-orbit__bolt--1 { top: 12%; right: 14%; animation-delay: 0s; }
.pika-orbit__bolt--2 { bottom: 18%; left: 10%; animation-delay: -1s; }

.pika-orbit__card {
  position: absolute;
  width: 36px;
  height: 50px;
  border-radius: 6px;
  background: linear-gradient(145deg, #8a8498, #5c5668);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
}

.pika-orbit__card--1 {
  top: 20%;
  left: 8%;
  animation: card-float 4s ease-in-out infinite;
}

.pika-orbit__card--2 {
  bottom: 14%;
  right: 10%;
  animation: card-float 4.5s ease-in-out infinite -1.5s;
  transform: rotate(12deg);
}

.activity-card__body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.activity-card__tag {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.activity-card--hero .activity-card__tag {
  background: rgba(255, 255, 255, 0.05);
  color: #b8b0c8;
}

.activity-card__body p {
  flex: 1;
  font-size: 14px;
  line-height: 1.65;
}

.activity-card__cta {
  margin-top: 16px;
  color: #b8b0c8;
  font-size: 13px;
  font-weight: 700;
}

.brand-cinema {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 0;
  margin: 96px auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: rgba(8, 10, 16, 0.82);
  box-shadow: var(--shadow);
}

.brand-cinema__photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}

.brand-cinema__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transform: scale(1.04);
  transition: transform 600ms ease;
}

.brand-cinema:hover .brand-cinema__photo img {
  transform: scale(1.08);
}

.brand-cinema__shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(125deg, transparent 40%, rgba(255, 255, 255, 0.08) 50%, transparent 60%);
  animation: shine-sweep 5s ease-in-out infinite;
}

.brand-cinema__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(32px, 5vw, 56px);
}

.brand-cinema__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 28px;
}

.brand-cinema__badges span {
  padding: 7px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #dce3f0;
  font-size: 12px;
  font-weight: 700;
}

.channel-preview {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(400px, 1fr);
  gap: 36px;
  align-items: center;
  margin-bottom: 88px;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(8, 10, 16, 0.7);
  backdrop-filter: blur(22px);
}

.channel-preview .btn {
  margin-top: 20px;
}

.screenshot-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: end;
}

.screenshot-wall figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #080a10;
  box-shadow: var(--shadow);
  transition: transform 260ms ease;
}

.screenshot-wall figure:hover {
  transform: translateY(-6px) rotate(-0.5deg);
}

.screenshot-wall img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: top left;
}

.screenshot-wall__main img {
  height: 480px;
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  margin-bottom: 64px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 16, 0.82);
  backdrop-filter: blur(22px);
  overflow: hidden;
}

.final-cta__gif {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(77, 232, 255, 0.3);
  animation: float-soft 4s ease-in-out infinite;
}

.final-cta__gif img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.final-cta h2 {
  margin-bottom: 0;
}

.footer {
  padding-bottom: 48px;
}

.footer p {
  margin: 0;
  font-size: 13px;
}

.sticky-register {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 30;
  width: min(780px, calc(100% - 32px));
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 14px 14px 20px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(10, 11, 16, 0.92);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
  transition: opacity 260ms ease, transform 260ms ease;
}

.sticky-register.is-hidden {
  opacity: 0;
  transform: translate(-50%, 120%);
  pointer-events: none;
}

.sticky-register strong,
.sticky-register span {
  display: block;
}

.sticky-register strong {
  font-family: var(--font-display);
  font-size: 16px;
}

.sticky-register span {
  color: var(--muted);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -28px, 0); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes spin-ring {
  to { transform: rotate(360deg); }
}

@keyframes spark-float {
  0%, 100% { opacity: 0.4; transform: translateY(0) scale(0.8); }
  50% { opacity: 1; transform: translateY(-16px) scale(1.2); }
}

@keyframes pika-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes pika-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(117, 71, 245, 0); }
  50% { box-shadow: 0 0 20px 2px rgba(154, 99, 255, 0.3); }
}

@keyframes bolt-flash {
  0%, 100% { opacity: 0.3; transform: scale(0.85) rotate(-8deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(8deg); }
}

@keyframes card-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

@keyframes shine-sweep {
  0%, 100% { transform: translateX(-120%); }
  50% { transform: translateX(120%); }
}

@media (max-width: 1024px) {
  .hero__stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__visual {
    min-height: 440px;
    margin-top: 12px;
  }

  .activity-card--hero,
  .activity-card:not(.activity-card--hero) {
    grid-column: span 12;
  }

  .activity-card--hero {
    flex-direction: column;
  }

  .activity-card__visual {
    min-height: 200px;
  }

  .brand-cinema {
    grid-template-columns: 1fr;
  }

  .brand-cinema__photo {
    min-height: 320px;
  }

  .channel-preview {
    grid-template-columns: 1fr;
  }

  .final-cta {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .final-cta__gif {
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  body {
    padding-top: var(--player-h-mini);
    padding-bottom: 150px;
  }

  .player-bar {
    min-height: var(--player-h-mini);
    gap: 10px;
    padding-inline: 12px;
  }

  .player-bar__viz {
    display: none;
  }

  .player-bar__title {
    font-size: 12px;
  }

  .player-bar__status {
    font-size: 11px;
  }

  .player-bar__btn--ghost {
    padding-inline: 10px;
  }

  .hero {
    padding-inline: 16px;
  }

  .brand span {
    display: none;
  }

  .hero__visual {
    min-height: 380px;
  }

  .hero__gif-ring {
    width: 38%;
    left: 0;
  }

  .hero__endorser {
    width: 88%;
  }

  .hero__pika {
    width: 58%;
  }

  .hero__actions .btn {
    width: 100%;
  }

  .activities,
  .brand-cinema,
  .channel-preview,
  .final-cta,
  .footer {
    width: min(100% - 28px, 1240px);
  }

  .activity-card:nth-child(n) {
    transform: none;
  }

  .screenshot-wall {
    grid-template-columns: 1fr;
  }

  .screenshot-wall img,
  .screenshot-wall__main img {
    height: auto;
  }

  .sticky-register {
    flex-direction: column;
    align-items: stretch;
    border-radius: var(--radius);
  }

  .sticky-register .btn {
    width: 100%;
  }
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.human-gate {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 20% 15%, rgba(138, 132, 152, 0.12), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(77, 232, 255, 0.08), transparent 50%),
    rgba(3, 3, 5, 0.92);
  backdrop-filter: blur(18px);
}

.human-gate[hidden] {
  display: none;
}

.human-gate__panel {
  width: min(440px, 100%);
  padding: clamp(28px, 5vw, 40px);
  border: 1px solid var(--line-strong);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(8, 10, 16, 0.92);
  box-shadow: var(--shadow);
  text-align: center;
}

.human-gate--blocked .human-gate__panel {
  border-color: rgba(184, 176, 200, 0.22);
}

.human-gate__kicker {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.human-gate__title {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 34px);
  line-height: 1.1;
  color: var(--text);
}

.human-gate__lead {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.human-gate__btn {
  width: 100%;
  cursor: pointer;
}

.human-gate__btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.human-gate__hint {
  margin: 14px 0 0;
  color: rgba(154, 163, 184, 0.85);
  font-size: 12px;
}

.human-gate__turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
  min-height: 65px;
}

.human-gate__turnstile[hidden] {
  display: none;
}

#main-content[hidden],
body.content-gated #main-content {
  display: none !important;
}

.noscript-gate {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--bg);
  color: var(--text);
  text-align: center;
}

.noscript-gate h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(24px, 5vw, 32px);
}

.noscript-gate p {
  margin: 0;
  max-width: 420px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

body.cta-blocked .js-offer,
body.cta-blocked .js-telegram {
  pointer-events: none;
  cursor: not-allowed;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .promo-strip__item::before,
  .activity-card::before {
    opacity: 0.08;
  }

  .promo-strip__item::after,
  .activity-card::after,
  .btn--primary::after,
  .btn--glass::after,
  .topbar__link--register::after {
    opacity: 0.35;
  }
}
