:root {
  --navy: #07131d;
  --navy-2: #0d1f2c;
  --navy-3: #122a39;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --copper: #bb7a32;
  --emerald: #18b37d;
  --coral: #dd654f;
  --white: #ffffff;
  --text: #12202a;
  --muted: #64727b;
  --line: rgba(255, 255, 255, .12);
  --line-dark: #d9ddd9;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  background: var(--navy);
  color: var(--white);
  font-size: 16px;
  line-height: 1.7
}

img {
  display: block;
  width: 100%;
  height: auto
}

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

button {
  font: inherit
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.16;
  font-family: Inter, Arial, sans-serif
}

h1 {
  font-size: 42px;
  font-weight: 600;
  letter-spacing: -.035em
}

h2 {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -.025em
}

h3 {
  font-size: 20px;
  font-weight: 500
}

p {
  font-size: 16px;
  margin: 0 0 18px;
  color: inherit
}

.site-note {
  background: var(--cream);
  color: #18262f;
  text-align: center;
  padding: 8px 16px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: .04em
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7, 19, 29, .96);
  border-bottom: 1px solid var(--line)
}

.header-inner {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: -.025em
}
.brand img{
  width: 190px;
  height: auto;
}


.nav {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 14px;
  font-weight: 500
}

.nav a:hover {
  color: var(--emerald)
}

.nav-cta {
  padding: 10px 15px;
  background: var(--emerald);
  color: #071b16 !important;
  border-radius: 8px
}

.menu-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--line);
  color: #fff;
  border-radius: 8px;
  padding: 8px 11px
}

.hero {
  padding: 20px 0 20px;
  overflow: hidden
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  align-items: end
}

.hero-copy {
  padding: 34px 0 54px
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  color: var(--emerald);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .13em
}

.eyebrow:before {
  content: "";
  width: 30px;
  height: 2px;
  background: currentColor
}

.hero-copy p {
  max-width: 500px;
  color: #b8c7d0
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 29px 0
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: 0;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer
}

.btn-primary {
  background: var(--copper);
  color: #fff
}

.btn-outline {
  border: 1px solid var(--line);
  color: #fff;
  background: transparent
}

.hero-art {
  position: relative;
  padding-left: 62px
}

.hero-art img {
  height: 460px;
  object-fit: cover;
  border-radius: 18px
}

.hero-ticket {
  position: absolute;
  left: 0;
  bottom: 42px;
  width: 235px;
  background: var(--paper);
  color: var(--text);
  padding: 20px;
  border-left: 5px solid var(--emerald);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .3)
}

.hero-ticket strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 5px
}

.hero-ticket small {
  color: var(--muted)
}

.hero-stripe {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 25px
}

.hero-stripe div {
  padding: 18px;
  background: var(--navy-2)
}

.hero-stripe b {
  display: block;
  color: var(--emerald);
  font-size: 21px
}

.hero-stripe span {
  font-size: 13px;
  color: #b7c6cf
}

.collection {
  background: var(--cream);
  color: var(--text);
  padding: 82px 0 96px
}

.section-intro {
  display: grid;
  grid-template-columns: 1fr .75fr;
  align-items: end;
  margin-bottom: 42px
}

.section-intro p {
  color: var(--muted)
}

.game-showcase {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: start
}

.game-feature {
  background: var(--paper);
  border: 1px solid var(--line-dark)
}

.game-feature img {
  height: 470px;
  object-fit: cover
}

.game-feature-copy {
  padding: 28px
}

.game-kicker {
  color: var(--copper);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em
}

.game-feature-copy p,
.game-side-copy p,
.game-wide-copy p {
  color: var(--muted)
}

.game-side-stack {
  display: grid;
  gap: 22px
}

.game-side {
  background: var(--paper);
  border: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 42% 58%;
  min-height: 230px
}

.game-side img {
  height: 100%;
  object-fit: cover
}

.game-side-copy {
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  font-weight: 600;
  color: var(--coral);
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer
}

.text-link:after {
  content: "→";
  transition: .2s
}

.text-link:hover:after {
  transform: translateX(4px)
}

.game-wide {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  background: var(--navy-2);
  color: #fff;
  margin-top: 22px
}

.game-wide img {
  height: 360px;
  object-fit: cover
}

.game-wide-copy {
  padding: 42px;
  display: flex;
  flex-direction: column;
  justify-content: center
}

.game-wide-copy p {
  color: #b9c7cf
}

.game-square-row {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
  margin-top: 22px
}

.game-square {
  background: var(--copper);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 360px
}

.game-square p {
  color: #fff6eb
}

.game-square-art img {
  height: 360px;
  object-fit: cover
}

.community {
  padding: 92px 0
}

.community-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 54px;
  align-items: center
}

.community-image {
  position: relative
}

.community-image img {
  height: 420px;
  object-fit: cover;
  border-radius: 10px
}

.community-label {
  position: absolute;
  right: -28px;
  bottom: 28px;
  background: var(--emerald);
  color: #072017;
  padding: 18px;
  width: 190px;
  font-weight: 600
}

.community-copy p {
  color: #b8c7d0
}

.community-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px
}

.point {
  border-top: 1px solid var(--line);
  padding-top: 16px
}

.point b {
  display: block;
  color: var(--copper);
  margin-bottom: 4px
}

.point span {
  color: #b8c7d0;
  font-size: 14px
}

.how {
  padding: 78px 0;
  background: var(--navy-2)
}

.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  margin-top: 34px
}

.how-card {
  padding: 30px;
  background: var(--navy-2)
}

.how-number {
  font-size: 12px;
  color: var(--emerald);
  font-weight: 600;
  letter-spacing: .12em
}

.how-card p {
  color: #b8c7d0
}

.faq {
  padding: 88px 0;
  background: var(--cream);
  color: var(--text)
}

.faq-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 60px
}

.faq-layout p {
  color: var(--muted)
}

details {
  border-top: 1px solid #cfd6d3;
  padding: 19px 0
}

summary {
  cursor: pointer;
  font-weight:600
}

details p {
  padding-top: 11px
}

.cta {
  padding: 58px 0;
  background: var(--coral)
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px
}

.cta p {
  color: #ffe7e1
}

.cta .btn {
  background: #fff;
  color: #4a261f
}

.footer {
  padding: 56px 0 22px;
  background: #041019
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: 46px
}

.footer p {
  color: #8fa2ad
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer-col h3 {
  font-size: 16px;
  margin-bottom: 8px
}

.footer-col a {
  color: #b8c7d0;
  font-size: 14px
}

.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 35px;
  padding-top: 18px;
  color: #7f939e;
  font-size: 13px
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 18px
}

.modal.open {
  display: flex
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .8)
}

.modal-card {
  position: relative;
  background: var(--navy-2);
  width: min(720px, 100%);
  max-height: 90vh;
  overflow: auto;
  border: 1px solid var(--line);
  padding: 24px
}

.modal-close {
  position: absolute;
  right: 18px;
  top: 13px;
  border: 0;
  background: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer
}

.game-stage {
  margin-top: 20px;
  min-height: 300px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  padding: 24px;
  background: #06131c
}

.feedback {
  text-align: center;
  color: var(--emerald);
  font-weight: 600;
  margin-top: 15px;
  min-height: 28px
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(4, 64px);
  gap: 10px
}

.signal-tile {
  height: 64px;
  border: 1px solid var(--line);
  background: #123142;
  color: #fff;
  font-size: 25px
}

.orbit {
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 8px solid var(--copper);
  position: relative
}

.orbit-dot {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  position: absolute;
  left: 103px;
  top: 103px;
  background: var(--emerald);
  transition: .4s
}

.crystals {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center
}

.crystal {
  width: 82px;
  height: 112px;
  clip-path: polygon(50% 0, 100% 28%, 82% 100%, 18% 100%, 0 28%);
  border: 0;
  background: var(--copper);
  color: #fff;
  font-weight: 600;
  font-size: 24px
}

.pulse {
  width: min(430px, 100%);
  height: 84px;
  background: #102b39;
  position: relative
}

.pulse-bar {
  position: absolute;
  left: 0;
  top: 38px;
  height: 8px;
  width: 25%;
  background: var(--emerald);
  transition: .35s
}

.controls {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 18px
}

.controls button {
  border: 0;
  border-radius: 7px;
  background: var(--copper);
  color: #fff;
  padding: 10px 14px;
  font-weight: 800
}
.legal{
  max-width: 1100px;
}
.legal-hero {
  padding: 65px 0;
  background: var(--navy-2)
}

.legal-main {
  padding: 68px 0 90px;
  background: var(--cream);
  color: var(--text)
}

.legal-main h2 {
  margin-top: 34px
}

.legal-main p,
.legal-main li {
  color: var(--muted)
}

.legal {
  width: 100%
}

@media(max-width:980px) {

  .hero-layout,
  .community-grid,
  .faq-layout {
    grid-template-columns: 1fr
  }

  .hero-art {
    padding-left: 0
  }

  .hero-ticket {
    left: 18px
  }

  .game-showcase {
    grid-template-columns: 1fr
  }

  .game-side-stack {
    grid-template-columns: 1fr 1fr
  }

  .game-side {
    grid-template-columns: 1fr
  }

  .game-side img {
    height: 230px
  }
}

@media(max-width:760px) {
  .menu-btn {
    display: block
  }

  .nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 20px;
    right: 20px;
    background: var(--navy-2);
    padding: 18px;
    border: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch
  }

  .nav.open {
    display: flex
  }

  .section-intro,
  .game-wide,
  .game-square-row {
    grid-template-columns: 1fr
  }

  .game-side-stack {
    grid-template-columns: 1fr
  }

  .how-grid,
  .footer-grid {
    grid-template-columns: 1fr
  }

  .community-points {
    grid-template-columns: 1fr
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-stripe {
    grid-template-columns: 1fr
  }
}

@media(max-width:520px) {
  .container {
    width: min(100% - 24px, 1180px)
  }

  h1 {
    font-size: 22px
  }

  h2 {
    font-size: 18px
  }

  h3 {
    font-size: 20px
  }

  p {
    font-size: 16px
  }

 

  .hero-art img {
    height: 310px
  }

  .hero-ticket {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 12px
  }

  .hero-actions .btn {
    width: 100%
  }

  .game-feature img,
  .game-wide img,
  .game-square-art img {
    height: 300px
  }

  .game-wide-copy,
  .game-square {
    padding: 28px
  }
}