/* Made by loxqcx */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  --bg: #0c0025;
  --bg-deep: #05000f;
  --bg-soft: #120033;
  --purple: #8d5cff;
  --purple-2: #b895ff;
  --purple-3: #5b2bff;
  --purple-4: #d7c5ff;
  --white: #fff;
  --text: rgba(255, 255, 255, .94);
  --muted: rgba(255, 255, 255, .68);
  --muted-2: rgba(255, 255, 255, .48);
  --line: rgba(255, 255, 255, .12);
  --line-purple: rgba(184, 149, 255, .28);
  --green: #31f589;
  --shadow: 0 28px 90px rgba(0, 0, 0, .56);
  --shell: min(1200px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg-deep);
}

[class^="ri-"],
[class*=" ri-"],
i[class*="ri-"] {
  display: inline-block;
  font-weight: normal !important;
  font-size: 118%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  color: var(--text);
  background: radial-gradient(900px 520px at 15% 8%, rgba(141, 92, 255, .25), transparent 60%), radial-gradient(760px 440px at 82% 20%, rgba(91, 43, 255, .18), transparent 58%), linear-gradient(180deg, var(--bg), var(--bg-deep));
  font-family: Inter, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

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

::selection {
  background: var(--purple-3);
  color: white;
}

.site {
  min-height: 100vh;
  overflow: hidden;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-content: center;
  gap: 22px;
  background: var(--bg-deep);
  transition: opacity .5s ease, visibility .5s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo,
.brand-logo {
  display: block;
  object-fit: contain;
  flex: none;
  filter: drop-shadow(0 0 16px rgba(184, 149, 255, .28));
}

.loader-logo {
  width: 72px;
  height: 72px;
  margin: auto;
  animation: loaderPulse 1.1s ease-in-out infinite alternate;
}

.loader-line {
  width: 130px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, .12);
}

.loader-line span {
  display: block;
  width: 55%;
  height: 100%;
  background: var(--purple-2);
  animation: loading 1s ease-in-out infinite;
}

@keyframes loaderPulse {
  to {
    transform: scale(1.06);
    filter: drop-shadow(0 0 24px rgba(184, 149, 255, .48));
  }
}

@keyframes loading {
  from {
    transform: translateX(-110%);
  }

  to {
    transform: translateX(190%);
  }
}

.site-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 76px;
  background: rgba(8, 0, 24, .72);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(22px);
}

.nav-shell {
  width: min(1260px, calc(100% - 34px));
  height: 100%;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: -.045em;
}

.brand-logo {
  width: 42px;
  height: 42px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: .92rem;
  font-weight: 800;
}

.nav-links a {
  position: relative;
  transition: color .22s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 99px;
  opacity: 0;
  background: linear-gradient(90deg, var(--purple), var(--purple-2));
  transform: scaleX(.45);
  transition: opacity .22s, transform .22s;
}

.nav-links a:hover {
  color: white;
}

.nav-links a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.nav-cta,
.button {
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 900;
  transition: transform .25s, background .25s, border-color .25s, box-shadow .25s;
}

.nav-cta {
  color: white;
  background: rgba(141, 92, 255, .12);
  border: 1px solid rgba(184, 149, 255, .34);
  box-shadow: inset 0 0 18px rgba(184, 149, 255, .06);
}

.nav-cta:hover {
  background: rgba(141, 92, 255, .18);
  border-color: rgba(184, 149, 255, .7);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: white;
  cursor: pointer;
  background: rgba(255, 255, 255, .055);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  transition: transform .25s, opacity .25s;
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 150px 0 96px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.banner-wall {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: .98;
}

.banner-grid {
  position: absolute;
  inset: -70px -120px -120px -70px;
  display: grid;
  grid-template-columns: repeat(4, minmax(360px, 1fr));
  gap: 7px;
  will-change: transform;
  animation: bannerDrive 18s linear infinite;
  transform: skewY(-6deg) translateY(-10px);
}

.banner-tile {
  min-height: 195px;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-image: url('../images/pressitbg.png');
  background-size: 390% 310%;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 22px;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .32);
  animation: tileFloat 5.2s ease-in-out infinite;
  filter: saturate(1.08) contrast(1.06) brightness(.78);
}

.banner-tile:nth-child(1) {
  background-position: 2% 2%;
}

.banner-tile:nth-child(2) {
  background-position: 36% 4%;
  animation-delay: -.7s;
}

.banner-tile:nth-child(3) {
  background-position: 70% 3%;
  animation-delay: -1.3s;
}

.banner-tile:nth-child(4) {
  background-position: 98% 7%;
  animation-delay: -2.1s;
}

.banner-tile:nth-child(5) {
  background-position: 4% 49%;
  animation-delay: -1.8s;
}

.banner-tile:nth-child(6) {
  background-position: 38% 45%;
  animation-delay: -.4s;
}

.banner-tile:nth-child(7) {
  background-position: 71% 48%;
  animation-delay: -2.7s;
}

.banner-tile:nth-child(8) {
  background-position: 97% 47%;
  animation-delay: -1.1s;
}

.banner-tile:nth-child(9) {
  background-position: 3% 96%;
  animation-delay: -2.3s;
}

.banner-tile:nth-child(10) {
  background-position: 37% 95%;
  animation-delay: -.9s;
}

.banner-tile:nth-child(11) {
  background-position: 70% 93%;
  animation-delay: -3.1s;
}

.banner-tile:nth-child(12) {
  background-position: 98% 96%;
  animation-delay: -1.6s;
}

.banner-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(740px 460px at 68% 45%, rgba(141, 92, 255, .08), transparent 58%), linear-gradient(90deg, rgba(12, 0, 37, .72), rgba(12, 0, 37, .38), rgba(12, 0, 37, .68)), linear-gradient(rgba(12, 0, 37, .04), rgba(12, 0, 37, .42) 88%);
}

.banner-vignette {
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 110px rgba(0, 0, 0, .48);
}

.noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .025;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

@keyframes bannerDrive {

  0%,
  100% {
    transform: skewY(-6deg) translateY(-10px) translateX(-34px);
  }

  50% {
    transform: skewY(-6deg) translateY(-10px) translateX(34px);
  }
}

@keyframes tileFloat {

  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }

  50% {
    transform: scale(1.04) translateY(-4px);
  }
}

.hero-grid {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, .9fr);
  align-items: center;
  gap: 58px;
}

.eyebrow,
.section-tag {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  color: rgba(255, 255, 255, .82);
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .13);
  border-radius: 999px;
  box-shadow: inset 0 0 24px rgba(184, 149, 255, .04);
  font-size: .9rem;
  font-weight: 850;
}

.eyebrow i,
.section-tag i {
  font-size: 1.15rem;
}

.live-dot {
  width: 10px;
  height: 10px;
  display: inline-block;
  flex: none;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 1.7s infinite;
  box-shadow: 0 0 rgba(49, 245, 137, .6);
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 rgba(49, 245, 137, .62);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(49, 245, 137, 0);
  }

  100% {
    box-shadow: 0 0 rgba(49, 245, 137, 0);
  }
}

.hero h1 {
  max-width: 760px;
  margin: 24px 0 18px;
  font-size: clamp(3rem, 6vw, 6.2rem);
  line-height: .92;
  letter-spacing: -.085em;
}

.hero h1 span,
.section h2 span,
.subpage-hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, white, var(--purple-4), var(--purple), var(--purple-2));
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy>p {
  max-width: 630px;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  font-size: 1.08rem;
  font-weight: 650;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button--primary {
  color: white;
  background: linear-gradient(135deg, var(--purple), var(--purple-3));
  box-shadow: 0 18px 45px rgba(141, 92, 255, .34);
}

.button--ghost {
  color: white;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
}

.button:hover {
  transform: translateY(-3px);
}

.button--ghost:hover {
  background: rgba(141, 92, 255, .16);
  border-color: rgba(184, 149, 255, .45);
}

.wallet-card {
  width: min(470px, 100%);
  justify-self: end;
  padding: 24px;
  background: radial-gradient(circle at 50% 0, rgba(141, 92, 255, .26), transparent 45%), linear-gradient(rgba(34, 22, 58, .92), rgba(12, 2, 28, .94));
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform .26s, border-color .26s;
}

.wallet-card:hover {
  transform: translateY(-5px);
  border-color: rgba(184, 149, 255, .34);
}

.wallet-top {
  display: grid;
  grid-template-columns: 32px 1fr 22px;
  align-items: center;
  gap: 14px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.wallet-heading {
  text-align: center;
}

.wallet-heading strong {
  font-size: 1.18rem;
  letter-spacing: -.04em;
}

.wallet-heading p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .84rem;
}

.wallet-menu span {
  width: 22px;
  height: 3px;
  display: block;
  margin: 4px 0;
  background: rgba(255, 255, 255, .45);
  border-radius: 99px;
}

.wallet-status {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 24px rgba(49, 245, 137, .8);
}

.wallet-balance {
  padding: 34px 0 26px;
  text-align: center;
}

.wallet-balance h2 {
  margin: 0;
  font-size: clamp(3rem, 5vw, 5.1rem);
  line-height: 1;
  letter-spacing: -.085em;
}

.wallet-balance p {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 14px 0 0;
  color: var(--green);
  font-size: 1rem;
  font-weight: 900;
}

.wallet-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 22px;
}

.wallet-buttons a {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, .105);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 16px;
  font-weight: 900;
  transition: background .22s, border-color .22s;
}

.wallet-buttons a:hover {
  background: rgba(141, 92, 255, .2);
  border-color: rgba(184, 149, 255, .25);
}

.wallet-rows {
  display: grid;
  gap: 14px;
}

.wallet-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: rgba(255, 255, 255, .085);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
}

.wallet-row strong {
  font-size: .94rem;
}

.wallet-row p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: .82rem;
}

.wallet-row b {
  color: var(--green);
  font-size: .95rem;
  font-weight: 950;
}

.coin-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  color: white;
  background: #170d18;
  border: 1px solid rgba(184, 149, 255, .18);
  border-radius: 50%;
}

.coin-icon--brand {
  background: linear-gradient(135deg, var(--purple), var(--purple-3));
}

.coin-icon i {
  font-size: 1.65rem;
}

.wallet-foot {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 16px;
  color: var(--muted-2);
  font-size: .68rem;
  font-weight: 700;
}

[data-live-status][data-mode="live"] {
  color: var(--green);
}

[data-live-status][data-mode="error"] {
  color: #ff8dae;
}

.section {
  position: relative;
  padding: 116px 0;
}

.section h2 {
  margin: 18px 0;
  font-size: clamp(2.25rem, 4vw, 4.25rem);
  line-height: .98;
  letter-spacing: -.065em;
}

.section p {
  color: var(--muted);
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.section-header {
  max-width: 780px;
  margin-bottom: 44px;
}

.about {
  background: radial-gradient(760px 460px at 84% 22%, rgba(141, 92, 255, .21), transparent 58%), linear-gradient(var(--bg), #080019);
}

.about-grid {
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  gap: 50px;
}

.section-copy p {
  max-width: 580px;
}

.section-copy p+p {
  margin-top: 14px;
}

.metric-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.metric-card {
  min-height: 205px;
  padding: 24px;
  background: radial-gradient(circle at 100% 0, rgba(184, 149, 255, .18), transparent 40%), linear-gradient(145deg, rgba(141, 92, 255, .15), rgba(255, 255, 255, .05));
  border: 1px solid rgba(184, 149, 255, .18);
  border-radius: 28px;
  box-shadow: 0 22px 62px rgba(0, 0, 0, .3);
  transition: transform .26s, border-color .26s, background .26s;
}

.metric-card:hover {
  transform: translateY(-6px);
  border-color: rgba(184, 149, 255, .42);
  background: radial-gradient(circle at 100% 0, rgba(184, 149, 255, .24), transparent 44%), linear-gradient(145deg, rgba(141, 92, 255, .18), rgba(255, 255, 255, .07));
}

.metric-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: white;
  background: rgba(141, 92, 255, .18);
  border: 1px solid rgba(184, 149, 255, .18);
  border-radius: 16px;
  font-size: 1.55rem;
}

.metric-card small {
  color: var(--purple-2);
  font-size: .82rem;
  font-weight: 900;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  font-size: 2.55rem;
  line-height: 1;
  letter-spacing: -.07em;
}

.metric-card p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  line-height: 1.45;
}

.services-section {
  overflow: hidden;
  background: radial-gradient(760px 460px at 12% 14%, rgba(141, 92, 255, .2), transparent 58%), radial-gradient(680px 420px at 88% 88%, rgba(91, 43, 255, .16), transparent 62%), #080019;
}

.services-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 44px;
}

.services-header h2 {
  margin-bottom: 0;
}

.services-header>p {
  max-width: 480px;
  margin: 0 0 4px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  padding: 26px;
  background: radial-gradient(circle at 20% 0, rgba(184, 149, 255, .16), transparent 42%), rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .105);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .27);
  transition: transform .28s, border-color .28s, background .28s, box-shadow .28s;
}

.service-card::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  right: -60px;
  bottom: -70px;
  border-radius: 50%;
  background: var(--purple-3);
  opacity: 0;
  filter: blur(52px);
  transition: opacity .28s;
}

.service-card:hover {
  transform: translateY(-7px);
  background: radial-gradient(circle at 20% 0, rgba(184, 149, 255, .22), transparent 44%), rgba(255, 255, 255, .06);
  border-color: rgba(184, 149, 255, .4);
  box-shadow: 0 32px 86px rgba(0, 0, 0, .36), 0 0 38px rgba(141, 92, 255, .08);
}

.service-card:hover::after {
  opacity: .42;
}

.service-number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, .26);
  font-size: .73rem;
  font-weight: 900;
  letter-spacing: .14em;
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 52px;
  color: var(--purple-2);
  background: linear-gradient(145deg, rgba(141, 92, 255, .2), rgba(255, 255, 255, .055));
  border: 1px solid rgba(184, 149, 255, .24);
  border-radius: 19px;
  box-shadow: inset 0 0 22px rgba(184, 149, 255, .05);
  font-size: 1.85rem;
}

.service-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card:nth-child(2) .service-icon svg {
  fill: currentColor;
  stroke: none;
}

.service-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 12px;
  font-size: 1.45rem;
  letter-spacing: -.055em;
}

.service-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, .58);
  font-size: .86rem;
  line-height: 1.55;
}

.services-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 20px;
  padding: 24px 26px;
  background: linear-gradient(110deg, rgba(141, 92, 255, .17), rgba(255, 255, 255, .055));
  border: 1px solid rgba(184, 149, 255, .2);
  border-radius: 26px;
}

.services-cta small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 800;
}

.services-cta strong {
  display: block;
  font-size: 1.16rem;
  letter-spacing: -.035em;
}

.service-button {
  min-width: 178px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 18px;
  color: white;
  background: linear-gradient(135deg, #7357ff, #9c6cff);
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 17px;
  box-shadow: 0 14px 34px rgba(91, 43, 255, .26);
  font-size: .9rem;
  font-weight: 900;
  transition: transform .25s, box-shadow .25s, filter .25s;
}

.service-button:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
  box-shadow: 0 19px 42px rgba(91, 43, 255, .38);
}

.service-button svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.service-button b {
  margin-left: 3px;
  color: rgba(255, 255, 255, .72);
}

.results {
  background: radial-gradient(760px 460px at 18% 12%, rgba(141, 92, 255, .18), transparent 58%), #080019;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: stretch;
  gap: 24px;
}

.result-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  background: radial-gradient(circle at 100% 0, rgba(141, 92, 255, .16), transparent 38%), rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 32px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
  transition: transform .26s, border-color .26s, box-shadow .26s;
}

.result-card--featured {
  border-color: rgba(184, 149, 255, .48);
  box-shadow: 0 26px 90px rgba(0, 0, 0, .38), inset 0 0 0 1px rgba(184, 149, 255, .15), 0 0 44px rgba(141, 92, 255, .08);
}

.result-card--muted {
  opacity: .82;
}

.result-card:hover {
  transform: translateY(-8px);
  border-color: rgba(184, 149, 255, .46);
  box-shadow: 0 34px 95px rgba(0, 0, 0, .42), 0 0 52px rgba(141, 92, 255, .1);
}

.result-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.result-top>div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.result-top>div>span {
  color: var(--purple-2);
}

.result-top h3 {
  margin: 0;
  font-size: 1.55rem;
  letter-spacing: -.055em;
}

.result-badge {
  padding: 8px 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, .07);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 800;
}

.result-lead {
  margin: 0 0 18px !important;
  color: rgba(255, 255, 255, .74) !important;
  font-size: .96rem !important;
  font-weight: 800 !important;
}

.result-graph {
  position: relative;
  height: 190px;
  overflow: hidden;
  background: rgba(0, 0, 0, .28);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
}

.result-graph svg {
  position: absolute;
  inset: 16px 12px 8px;
  width: calc(100% - 24px);
  height: calc(100% - 24px);
}

.graph-grid {
  position: absolute;
  inset: 0;
  opacity: .3;
  background-image: linear-gradient(rgba(255, 255, 255, .1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .1) 1px, transparent 1px);
  background-size: 25% 33.333%;
}

.result-bullets {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.result-bullet {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  padding: 14px;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .085);
  border-radius: 18px;
}

.result-bullet>span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: .86rem;
}

.result-bullet.good>span {
  color: var(--green);
  background: rgba(49, 245, 137, .1);
  border: 1px solid rgba(49, 245, 137, .18);
}

.result-bullet.bad>span {
  color: #ff6b9c;
  background: rgba(255, 107, 156, .1);
  border: 1px solid rgba(255, 107, 156, .18);
}

.result-bullet strong {
  display: block;
  margin-bottom: 4px;
  font-size: .92rem;
}

.result-bullet p {
  margin: 0;
  color: rgba(255, 255, 255, .62);
  font-size: .82rem;
  line-height: 1.45;
}

.games-section {
  background: radial-gradient(760px 460px at 78% 8%, rgba(141, 92, 255, .18), transparent 58%), var(--bg);
}

.game-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.game-card {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .11);
  border-radius: 28px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
  transition: transform .28s, border-color .28s, background .28s, box-shadow .28s;
}

.game-card:hover {
  transform: translateY(-7px);
  background: rgba(255, 255, 255, .075);
  border-color: rgba(184, 149, 255, .42);
  box-shadow: 0 30px 85px rgba(0, 0, 0, .36), 0 0 38px rgba(141, 92, 255, .08);
}

.game-rank {
  position: absolute;
  z-index: 2;
  top: 14px;
  left: 14px;
  padding: 8px 10px;
  color: white;
  background: rgba(7, 0, 20, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 12px;
  backdrop-filter: blur(12px);
  font-size: .72rem;
  font-weight: 900;
}

.game-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: rgba(255, 255, 255, .06) center/cover no-repeat;
  transition: transform .35s, filter .35s;
}

.game-card:hover .game-image {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.05);
}

.game-info {
  position: relative;
  z-index: 1;
  padding: 20px 20px 6px;
}

.game-info h3 {
  margin: 0;
  font-size: 1.22rem;
  letter-spacing: -.045em;
}

.game-info p {
  min-height: 48px;
  margin: 9px 0 0;
  color: var(--muted);
  font-size: .85rem;
  line-height: 1.5;
}

.game-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px 20px 20px;
}

.game-meta>div {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px;
  background: rgba(255, 255, 255, .065);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 17px;
}

.game-meta strong {
  display: block;
  color: white;
  font-size: 1.08rem;
  line-height: 1;
}

.game-meta span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: .67rem;
  font-weight: 800;
}

.game-stat-icon {
  color: var(--purple-2);
  font-style: normal;
}

.game-link {
  position: absolute;
  z-index: 3;
  top: 14px;
  right: 14px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  opacity: 0;
  background: rgba(7, 0, 20, .72);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  transform: translateY(-6px);
  transition: opacity .22s, transform .22s, background .22s;
}

.game-card:hover .game-link {
  opacity: 1;
  transform: translateY(0);
}

.game-link:hover {
  background: var(--purple-3);
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

.contact {
  padding-bottom: 76px;
  background: radial-gradient(820px 480px at 50% 0, rgba(141, 92, 255, .2), transparent 62%), #080019;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr .86fr;
  align-items: center;
  gap: 34px;
  padding: 44px;
  background: radial-gradient(circle at 84% 10%, rgba(141, 92, 255, .24), transparent 35%), rgba(255, 255, 255, .055);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 34px;
  box-shadow: 0 26px 80px rgba(0, 0, 0, .34);
}

.contact-card h2 {
  max-width: 620px;
}

.contact-card>div>p {
  max-width: 620px;
  margin-bottom: 0;
}

.contact-links {
  display: grid;
  gap: 14px;
}

.contact-links a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 20px;
  background: rgba(255, 255, 255, .075);
  border: 1px solid rgba(255, 255, 255, .095);
  border-radius: 22px;
  transition: transform .25s, background .25s, border-color .25s;
}

.contact-links a:only-child {
  grid-column: 1 / -1;
}

.contact-links a:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, .1);
  border-color: rgba(184, 149, 255, .42);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: white;
  background: rgba(141, 92, 255, .18);
  border: 1px solid rgba(184, 149, 255, .2);
  border-radius: 18px;
  font-size: 1.3rem;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.contact-links small {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-weight: 850;
}

.contact-links strong {
  font-size: 1.08rem;
  letter-spacing: -.04em;
}

.contact-links b {
  color: var(--purple-2);
}

footer {
  position: relative;
  padding: 28px 0 34px;
  background: radial-gradient(600px 260px at 50% 0, rgba(141, 92, 255, .18), transparent 65%), var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, .08);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: -.035em;
}

.footer-brand small {
  display: block;
  margin-top: 3px;
  color: var(--muted-2);
  font-size: .78rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: .86rem;
  font-weight: 800;
}

.footer-links a:hover {
  color: white;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
  color: white;
  background: rgba(141, 92, 255, .13);
  border: 1px solid rgba(184, 149, 255, .24);
  border-radius: 999px;
  font-size: .84rem;
  font-weight: 900;
}

.subpage-hero {
  position: relative;
  min-height: 570px;
  padding: 175px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: radial-gradient(720px 420px at 75% 25%, rgba(141, 92, 255, .3), transparent 60%), linear-gradient(180deg, var(--bg), #080019);
  border-bottom: 1px solid var(--line);
}

.subpage-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  top: 40px;
  right: 8%;
  border-radius: 50%;
  background: rgba(91, 43, 255, .25);
  filter: blur(110px);
}

.subpage-hero .shell {
  position: relative;
}

.subpage-hero h1 {
  max-width: 900px;
  margin: 24px 0 44px;
  font-size: clamp(3.2rem, 7vw, 6.5rem);
  line-height: .92;
  letter-spacing: -.085em;
}

.subpage-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.subpage-foot p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
}

.subpage-foot>span {
  padding: 10px 14px;
  color: var(--muted);
  background: rgba(255, 255, 255, .06);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: .72rem;
  font-weight: 800;
}

.all-games {
  padding-top: 80px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal[data-delay="1"] {
  transition-delay: .09s;
}

.reveal[data-delay="2"] {
  transition-delay: .16s;
}

.reveal[data-delay="3"] {
  transition-delay: .23s;
}

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

@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, .78fr);
    gap: 32px;
  }

  .hero h1 {
    font-size: clamp(3.4rem, 6.8vw, 5rem);
  }

  .wallet-card {
    padding: 20px;
  }

  .about-grid,
  .contact-card {
    gap: 34px;
  }

  .banner-grid {
    grid-template-columns: repeat(3, minmax(300px, 1fr));
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .game-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(calc(100% - 32px), 760px);
  }

  .site-nav {
    height: 68px;
  }

  .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 14px;
    right: 14px;
    display: grid;
    gap: 0;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    color: var(--muted);
    background: rgba(12, 0, 37, .97);
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
    transform: translateY(-10px);
    transition: opacity .25s, visibility .25s, transform .25s;
  }

  .nav-links.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    padding: 15px;
    border-radius: 14px;
  }

  .nav-links a:hover {
    background: rgba(255, 255, 255, .06);
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero {
    min-height: auto;
    padding: 118px 0 78px;
  }

  .hero-grid,
  .about-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 42px;
  }

  .hero-copy {
    max-width: 680px;
  }

  .hero h1 {
    font-size: clamp(3.6rem, 10vw, 5rem);
  }

  .wallet-card {
    width: min(600px, 100%);
    justify-self: center;
  }

  .banner-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr));
    gap: 10px;
    opacity: .86;
  }

  .banner-tile {
    min-height: 165px;
    border-radius: 16px;
  }

  .section {
    padding: 86px 0;
  }

  .about-grid {
    gap: 42px;
  }

  .section-copy {
    max-width: 680px;
  }

  .metric-card {
    min-height: 180px;
  }

  .services-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .services-header>p {
    max-width: 620px;
  }

  .contact-card {
    padding: 32px;
  }

  .contact-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-links a {
    grid-template-columns: auto 1fr;
  }

  .contact-links b {
    display: none;
  }

  .game-link {
    opacity: 1;
    transform: none;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .subpage-hero {
    min-height: 520px;
    padding-top: 135px;
  }

  .subpage-foot {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

  .nav-shell {
    width: calc(100% - 24px);
  }

  .brand {
    gap: 9px;
    font-size: 1rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
  }

  .hero {
    padding: 104px 0 62px;
  }

  .hero-grid {
    gap: 28px;
  }

  .eyebrow,
  .section-tag {
    padding: 8px 11px;
    font-size: .75rem;
  }

  .hero h1 {
    margin: 20px 0 16px;
    font-size: clamp(2.8rem, 14vw, 4rem);
    line-height: .94;
  }

  .hero-copy>p {
    font-size: .94rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 25px;
  }

  .button {
    width: 100%;
    height: 46px;
    padding-inline: 13px;
    font-size: .78rem;
  }

  .banner-grid {
    inset: -40px -130px -100px -100px;
    grid-template-columns: repeat(2, minmax(210px, 1fr));
    gap: 8px;
  }

  .banner-tile {
    min-height: 132px;
    border-radius: 13px;
  }

  .wallet-card {
    padding: 14px;
    border-radius: 24px;
  }

  .wallet-top {
    grid-template-columns: 25px 1fr 17px;
    gap: 9px;
    padding: 4px 4px 16px;
  }

  .wallet-menu span {
    width: 17px;
  }

  .wallet-heading strong {
    font-size: 1rem;
  }

  .wallet-heading p {
    font-size: .72rem;
  }

  .wallet-status {
    width: 14px;
    height: 14px;
  }

  .wallet-balance {
    padding: 27px 0 21px;
  }

  .wallet-balance h2 {
    font-size: clamp(2.65rem, 13vw, 3.5rem);
  }

  .wallet-balance p {
    margin-top: 10px;
    font-size: .84rem;
  }

  .wallet-buttons {
    gap: 9px;
    margin-bottom: 12px;
  }

  .wallet-buttons a {
    height: 48px;
    border-radius: 14px;
    font-size: .78rem;
  }

  .wallet-rows {
    gap: 9px;
  }

  .wallet-row {
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 10px;
    padding: 11px;
    border-radius: 17px;
  }

  .coin-icon {
    width: 42px;
    height: 42px;
  }

  .coin-icon img {
    width: 24px;
    height: 24px;
  }

  .wallet-row strong {
    font-size: .82rem;
  }

  .wallet-row p {
    font-size: .7rem;
  }

  .wallet-row b {
    grid-column: auto;
    font-size: .84rem;
  }

  .wallet-foot {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    padding-inline: 3px;
    font-size: .61rem;
  }

  .section {
    padding: 70px 0;
  }

  .section h2 {
    font-size: clamp(2.25rem, 11vw, 3.2rem);
  }

  .section p {
    font-size: .92rem;
    line-height: 1.65;
  }

  .metric-grid,
  .game-list {
    grid-template-columns: 1fr;
  }

  .metric-card {
    min-height: 160px;
    padding: 20px;
    border-radius: 23px;
  }

  .metric-card strong {
    font-size: 2.2rem;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 245px;
    padding: 22px;
    border-radius: 23px;
  }

  .service-icon {
    margin-bottom: 34px;
  }

  .services-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 20px;
    border-radius: 22px;
  }

  .service-button {
    width: 100%;
  }

  .game-card {
    border-radius: 23px;
  }

  .game-info p {
    min-height: 0;
  }

  .game-meta {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 16px 16px;
  }

  .game-meta>div {
    padding: 11px;
    border-radius: 14px;
  }

  .contact {
    padding-bottom: 58px;
  }

  .contact-card {
    gap: 25px;
    padding: 21px;
    border-radius: 26px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 11px;
    padding: 14px;
    border-radius: 17px;
  }

  .contact-links b {
    display: block;
  }

  .contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 14px;
  }

  .contact-icon img {
    width: 27px;
    height: 27px;
  }

  .contact-links strong {
    font-size: .94rem;
  }

  .footer-links {
    gap: 13px;
    font-size: .78rem;
  }

  .footer-badge {
    font-size: .75rem;
  }

  .subpage-hero {
    min-height: 470px;
    padding: 118px 0 65px;
  }

  .subpage-hero h1 {
    margin-bottom: 28px;
    font-size: clamp(2.8rem, 13vw, 4rem);
  }

  .all-games {
    padding-top: 58px;
  }
}

@media (max-width: 370px) {
  :root {
    --shell: calc(100% - 20px);
  }

  .hero h1 {
    font-size: 2.65rem;
  }

  .hero-actions {
    grid-template-columns: 1fr;
  }

  .wallet-row {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 8px;
    padding: 9px;
  }

  .coin-icon {
    width: 38px;
    height: 38px;
  }

  .wallet-row strong {
    font-size: .76rem;
  }

  .wallet-row b {
    font-size: .76rem;
  }

  .game-meta {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }

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