/* ============================================================
   NYCPR — Landing page styles
   ============================================================ */

:root {
  --bg:        #0a0a12;
  --bg-2:      #0e0e1a;
  --gold:      #f5b829;
  --gold-lite: #ffd75e;
  --gold-deep: #c8841a;
  --pink:      #ff2d78;
  --pink-lite: #ff5c97;
  --text:      #ececed;
  --muted:     #9b9bab;
  --card:      rgba(255, 255, 255, 0.025);
  --card-bd:   rgba(255, 255, 255, 0.08);
  --maxw:      1320px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 12px;
  padding: 0.85rem 1.6rem;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn--gold {
  background: linear-gradient(180deg, var(--gold-lite), var(--gold));
  color: #2a1a00;
  box-shadow: 0 8px 26px -8px rgba(245, 184, 41, 0.7);
}
.btn--gold:hover { box-shadow: 0 10px 32px -6px rgba(245, 184, 41, 0.85); transform: translateY(-2px); }

.btn--pink {
  background: rgba(255, 45, 120, 0.07);
  border-color: var(--pink);
  color: #fff;
  box-shadow: 0 0 24px -8px rgba(255, 45, 120, 0.6);
}
.btn--pink:hover { background: rgba(255, 45, 120, 0.16); transform: translateY(-2px); }

/* "Coming Soon" disabled state */
.btn.is-soon {
  cursor: not-allowed;
  opacity: 0.7;
  border-color: rgba(255, 45, 120, 0.4);
  box-shadow: none;
  font-family: inherit;
}
.btn.is-soon:hover { background: rgba(255, 45, 120, 0.07); transform: none; }
.btn.is-soon:active { transform: none; }
.soon-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  color: var(--pink-lite);
  background: rgba(255, 45, 120, 0.16);
  border: 1px solid rgba(255, 45, 120, 0.45);
  border-radius: 999px;
  padding: 0.15rem 0.5rem;
}

.btn--ghost {
  background: rgba(245, 184, 41, 0.04);
  border-color: rgba(245, 184, 41, 0.55);
  color: var(--gold-lite);
  padding: 0.65rem 1.3rem;
}
.btn--ghost:hover { background: rgba(245, 184, 41, 0.12); }

.bolt { color: var(--gold-deep); filter: drop-shadow(0 0 4px rgba(245,184,41,.8)); }
.btn--gold .bolt { color: #7a4d00; }

/* ===================== NAV ===================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(8,8,16,0.92), rgba(8,8,16,0.55) 70%, transparent);
  backdrop-filter: blur(8px);
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: 1.7rem;
  letter-spacing: 0.5px;
  background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 2px 10px rgba(245,184,41,0.25);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__link {
  font-weight: 500;
  color: var(--muted);
  position: relative;
  transition: color 0.2s ease;
}
.nav__link:hover { color: #fff; }
.nav__link.is-active { color: var(--gold-lite); font-weight: 600; }
.nav__link.is-active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -8px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav__cta { margin-left: 0.6rem; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; flex-direction: column; gap: 5px; padding: 6px; }
.nav__toggle span { width: 24px; height: 2px; background: var(--gold-lite); border-radius: 2px; transition: 0.25s; }
.nav__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.is-open span:nth-child(2) { opacity: 0; }
.nav__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  padding-top: 84px;
  background:
    radial-gradient(1200px 700px at 78% 20%, rgba(40,22,60,0.55), transparent 60%),
    radial-gradient(900px 600px at 10% 80%, rgba(20,16,40,0.6), transparent 55%),
    var(--bg);
  overflow: hidden;
}

.hero__art {
  position: absolute;
  top: 0; right: 0;
  width: 64%;
  height: 80%;
  z-index: 0;
}
.hero__art img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 32%;
  /* fade the left edge AND the bottom edge into the dark background */
  -webkit-mask-image:
    linear-gradient(90deg, transparent 0%, #000 26%, #000 100%),
    linear-gradient(180deg, #000 58%, transparent 98%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 26%, #000 100%),
    linear-gradient(180deg, #000 58%, transparent 98%);
  mask-composite: intersect;
}
/* extra vignette to seat the art into the page */
.hero__art::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, var(--bg) 2%, transparent 30%),
    linear-gradient(180deg, transparent 55%, var(--bg) 96%);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 3rem 2rem 0;
}
.hero__content { max-width: 560px; }

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  background: rgba(255,255,255,0.03);
  margin-bottom: 1.6rem;
}
.badge__star { color: var(--pink); }
.badge__brand { color: var(--pink); font-weight: 700; letter-spacing: 0.5px; }
.badge__dot { color: var(--muted); }
.badge__text { color: var(--muted); }

.wordmark {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -1px;
  margin-bottom: 0.4rem;
}
.wordmark span {
  position: relative;
  display: inline-block;
  background: linear-gradient(175deg, #fff2c4 4%, var(--gold-lite) 32%, var(--gold) 60%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    0 1px 0 #b9760f,
    0 4px 14px rgba(245,184,41,0.35),
    0 10px 40px rgba(245,184,41,0.25);
}
/* pink slash underline */
.wordmark span::after {
  content: "";
  position: absolute;
  left: 4%; bottom: -2px;
  width: 62%; height: 8px;
  background: var(--pink);
  border-radius: 4px;
  transform: skewX(-20deg) skewY(-2deg);
  box-shadow: 0 0 18px rgba(255,45,120,0.7);
}

.tagline {
  font-family: "Caveat", cursive;
  font-size: clamp(2.1rem, 4.4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.05;
  color: #f3f3f5;
  transform: rotate(-2deg);
  transform-origin: left;
  margin: 0.6rem 0 1.6rem;
}
.tagline__accent {
  position: relative;
  color: var(--pink);
}
.tagline__accent::after {
  content: "";
  position: absolute;
  left: 0; right: -4px; bottom: -2px;
  height: 5px;
  background: var(--pink);
  border-radius: 4px;
  transform: skewX(-12deg);
  box-shadow: 0 0 14px rgba(255,45,120,0.7);
}

.lede {
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}
.lede__link { color: var(--text); text-decoration: underline; text-underline-offset: 3px; text-decoration-color: var(--muted); }
.lede__link:hover { color: var(--gold-lite); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.pad { filter: grayscale(0.2); }

.dex-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: rgba(255,255,255,0.25);
  transition: color 0.2s;
}
.dex-link:hover { color: var(--gold-lite); }
.dex-link__chev { text-decoration: none; }

/* ===================== FEATURE CARDS ===================== */
.features {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 3.5rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.012));
  border: 1px solid var(--card-bd);
  border-radius: 18px;
  padding: 1.6rem 1.5rem;
  backdrop-filter: blur(6px);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(245,184,41,0.35);
  box-shadow: 0 18px 40px -22px rgba(0,0,0,0.9);
}
.card__icon { margin-bottom: 1rem; height: 40px; display: flex; align-items: center; }
.card__title { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.card__text { color: var(--muted); font-size: 0.98rem; line-height: 1.55; }

/* ===================== SCROLL CUE ===================== */
.scroll-cue {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  color: var(--muted);
  font-size: 0.95rem;
  padding: 2.5rem 0 2.5rem;
}
.scroll-cue__chev { font-size: 1.5rem; line-height: 1; animation: bob 1.8s ease-in-out infinite; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
.scroll-cue:hover { color: var(--gold-lite); }

/* ===================== GAME ===================== */
.game {
  position: relative;
  padding: 5.5rem 2rem;
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(255,45,120,0.10), transparent 60%),
    radial-gradient(900px 600px at 90% 100%, rgba(245,184,41,0.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--card-bd);
}
.game__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3.5rem;
  align-items: center;
}

/* media */
.game__media {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--card-bd);
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.9);
  aspect-ratio: 1200 / 727;
  background: #000;
}
.game__video {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.game__tag {
  position: absolute;
  bottom: 12px; left: 12px;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

/* content */
.game__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--pink-lite);
  background: rgba(255,45,120,0.10);
  border: 1px solid rgba(255,45,120,0.35);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
}
.game__live {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 0 rgba(255,45,120,0.6);
  animation: pulse 1.8s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,45,120,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(255,45,120,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,45,120,0); }
}

.game__title {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  line-height: 1;
  margin: 1rem 0 0.6rem;
}
.game__title .accent {
  background: linear-gradient(180deg, var(--gold-lite), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.game__lead {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 1.8rem;
}

.game__block { margin-bottom: 1.5rem; }
.game__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-lite);
  margin-bottom: 0.7rem;
}
.game__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.game__list li {
  font-size: 0.95rem;
  color: var(--text);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--card-bd);
  padding: 0.5rem 0.9rem;
  border-radius: 10px;
}
.game__next { color: var(--muted); font-size: 1.05rem; line-height: 1.6; }

.game__beta {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 1.02rem;
}
.game__ticker {
  font-family: "Archivo Black", sans-serif;
  font-style: italic;
  color: var(--gold-lite);
  margin-left: 0.35rem;
}

/* ===================== FOOTER ===================== */
.footer {
  border-top: 1px solid var(--card-bd);
  padding: 2.5rem 2rem 3rem;
  text-align: center;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}
.social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  color: var(--muted);
  border: 1px solid var(--card-bd);
  background: rgba(255,255,255,0.025);
  transition: color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, background 0.2s ease;
}
.social:hover {
  color: var(--gold-lite);
  border-color: rgba(245,184,41,0.45);
  background: rgba(245,184,41,0.08);
  transform: translateY(-2px);
}
.footer__copy {
  color: var(--muted);
  font-size: 0.9rem;
  letter-spacing: 0.2px;
}

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1100px) {
  .hero__art { width: 58%; opacity: 0.85; }
  .features { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 760px) {
  .nav__inner { padding: 1rem 1.25rem; }
  .nav__links {
    position: fixed;
    inset: 64px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(10,10,18,0.98);
    border-bottom: 1px solid var(--card-bd);
    padding: 0.5rem 1.25rem 1.25rem;
    transform: translateY(-130%);
    transition: transform 0.3s ease;
  }
  .nav__links.is-open { transform: translateY(0); }
  .nav__link { padding: 0.9rem 0.25rem; }
  .nav__link.is-active::after { display: none; }
  .nav__cta { margin: 0.6rem 0 0; justify-content: center; }
  .nav__toggle { display: flex; }

  .hero { padding-top: 60px; }

  /* Art becomes a full-bleed banner at the top, fading into the page */
  .hero__art {
    position: relative;
    top: auto; right: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 4;
    opacity: 1;
    z-index: 1;
  }
  .hero__art img {
    object-position: 50% 30%;
    -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 99%);
    mask-image: linear-gradient(180deg, #000 0%, #000 62%, transparent 99%);
    -webkit-mask-composite: source-over;
    mask-composite: add;
  }
  .hero__art::after {
    background: linear-gradient(180deg, transparent 55%, var(--bg) 99%);
  }

  .hero__inner { padding: 0 1.25rem; margin-top: -1.8rem; }
  .hero__content { max-width: 100%; }

  /* Badge: keep it tidy and let it wrap gracefully */
  .badge {
    align-items: center;
    font-size: 0.82rem;
    padding: 0.55rem 0.95rem;
    line-height: 1.35;
    margin-bottom: 1.3rem;
  }

  .wordmark { font-size: clamp(4rem, 19vw, 6rem); }
  .tagline { font-size: clamp(2rem, 8.5vw, 2.7rem); margin: 0.5rem 0 1.4rem; }
  .lede { font-size: 1.05rem; margin-bottom: 1.8rem; }

  /* Buttons stack full-width with even spacing */
  .hero__actions { flex-direction: column; gap: 0.85rem; }
  .hero__actions .btn { width: 100%; justify-content: center; padding: 1rem 1.4rem; }

  .features {
    grid-template-columns: 1fr;
    padding: 0 1.25rem;
    margin-top: 3rem;
    gap: 1rem;
  }
  .card { padding: 1.4rem 1.4rem; }

  /* Game section stacks: image on top, text below */
  .game { padding: 3.5rem 1.25rem; }
  .game__inner { grid-template-columns: 1fr; gap: 1.8rem; }
  .game__lead { font-size: 1.1rem; }

  .footer { padding: 2.25rem 1.25rem 2.75rem; }
}

@media (max-width: 1100px) and (min-width: 761px) {
  .game__inner { gap: 2.5rem; }
}
