.marquee-wrap {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: var(--accent);
}

.marquee {
  padding: clamp(14px, 1.8vw, 24px) 0;
}

.marquee__row {
  display: flex;
  width: max-content;
  animation: marquee-run 42s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: clamp(22px, 3vw, 46px);
  padding-right: clamp(22px, 3vw, 46px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.7vw, 2.5rem);
  letter-spacing: -0.02em;
  color: var(--on-accent);
  white-space: nowrap;
}

.marquee__star {
  width: clamp(20px, 2.4vw, 36px);
  height: clamp(20px, 2.4vw, 36px);
  flex: 0 0 auto;
  background: var(--on-accent);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.6 6 5.4 10.8 12 12-6.6 1.2-11.4 6-12 12-.6-6-5.4-10.8-12-12C6.6 10.8 11.4 6 12 0z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 0c.6 6 5.4 10.8 12 12-6.6 1.2-11.4 6-12 12-.6-6-5.4-10.8-12-12C6.6 10.8 11.4 6 12 0z'/%3E%3C/svg%3E") center / contain no-repeat;
}

@keyframes marquee-run {
  to {
    transform: translateX(-50%);
  }
}



/* ghost word */

.ghost-word {
  position: absolute;
  top: clamp(18px, 3vw, 46px);
  left: 50%;
  max-width: 100vw;
  overflow: hidden;
  transform: translateX(-50%);
  font-family: var(--font-head);
  font-weight: 600;
  font-variation-settings: "slnt" -10;
  font-size: clamp(3.2rem, 11vw, 10rem);
  letter-spacing: -0.04em;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--surface-line-strong);
  white-space: nowrap;
  pointer-events: none;
  opacity: 0.5;
}

.ghost-word--hero {
  top: clamp(70px, 9vw, 130px);
}

.ghost-word--side {
  top: 50%;
  left: auto;
  right: 100%;
  margin-right: clamp(10px, 2vw, 28px);
  max-width: none;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 800;
  font-variation-settings: normal;
  text-transform: uppercase;
  font-size: clamp(4rem, 8vw, 7.4rem);
  overflow: visible;
}



/* seal */

.seal {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(132px, 15vw, 196px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--bg-2);
  border: 1px solid var(--surface-line-strong);
}

.seal__ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin-slow 26s linear infinite;
}

.seal__ring text {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 9.6px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  fill: var(--text-0);
}

.seal__core {
  display: grid;
  place-items: center;
  width: 58%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
}



/* promo */

.game-promo {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(24px, 4vw, 60px);
  align-items: center;
  padding: clamp(30px, 4.4vw, 64px);
  border-radius: var(--r-xl);
  border: 1px solid var(--surface-line);
  background: var(--surface);
  overflow: hidden;
  isolation: isolate;
}

.game-promo__text .h2 {
  margin-bottom: 16px;
  max-width: 17ch;
}

.game-promo__text p {
  font-size: 16px;
  color: var(--text-1);
  max-width: 56ch;
  margin-bottom: 28px;
}

.game-promo__prize {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 4px;
}

.game-promo__prize img {
  width: min(100%, 300px);
  animation: float-y 7s ease-in-out infinite;
}

.game-promo__prize-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3rem, 6.4vw, 5.2rem);
  line-height: 1;
  color: var(--accent);
}

.game-promo__prize-label {
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-2);
}

.game-promo__card {
  display: none;
}



/* nda */

.nda {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(28px, 5vw, 84px);
  padding: clamp(30px, 4.4vw, 64px);
  border-radius: var(--r-xl);
  border: 1px solid var(--surface-line);
  background: var(--bg-1);
}

.nda .h2 {
  margin-bottom: 16px;
}

.nda__text {
  max-width: 52ch;
  font-size: 16px;
  color: var(--text-1);
}

.nda__bars {
  display: grid;
  margin-top: clamp(26px, 3.4vw, 44px);
  border-top: 1px solid var(--surface-line);
}

.nda__bars div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--surface-line);
}

.nda__bars i {
  height: 16px;
  border-radius: var(--r-xs);
  background: var(--surface-line-strong);
}

.nda__bars div:nth-child(1) i { width: 58%; }
.nda__bars div:nth-child(2) i { width: 76%; }
.nda__bars div:nth-child(3) i { width: 41%; }
.nda__bars div:nth-child(4) i { width: 67%; }

.nda__bars span {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--accent);
}

.nda__list {
  display: grid;
  align-content: start;
  border-top: 1px solid var(--surface-line);
}

.nda__list li {
  padding: clamp(18px, 2.2vw, 28px) 0;
  border-bottom: 1px solid var(--surface-line);
}

.nda__list b {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.2rem, 1.9vw, 1.6rem);
  color: var(--text-0);
}

.nda__list p {
  max-width: 44ch;
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text-1);
}



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

@media (max-width: 900px) {
  .game-promo,
  .nda {
    grid-template-columns: 1fr;
  }

  .game-promo__prize img {
    width: 180px;
  }

  .ghost-word--side {
    display: none;
  }
}
