body.vxh0514-active {
  margin: 0;
  background: #02040a;
  color: #fff;
  overflow-x: hidden;
}

body.vxh0514-active #app {
  display: none !important;
}

.vxh0514 {
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 0%, rgba(0, 228, 255, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 12%, rgba(95, 112, 255, 0.12), transparent 30rem),
    #02040a;
  color: #fff;
  font-family: Inter, Arial, "PingFang SC", "Microsoft YaHei", sans-serif;
  letter-spacing: 0;
}

.vxh0514 * {
  box-sizing: border-box;
}

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

.vxh0514 button,
.vxh0514 input,
.vxh0514 select {
  font: inherit;
}

.vxh0514-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.65), transparent 74%);
}

.vxh0514-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 32px;
  background: rgba(2, 4, 10, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.vxh0514-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 148px;
}

.vxh0514-logo {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #05070c;
  border: 1px solid rgba(0, 228, 255, 0.25);
  box-shadow: inset 0 0 20px rgba(0, 228, 255, 0.08);
}

.vxh0514-logo svg {
  width: 28px;
  height: 28px;
}

.vxh0514-brand-text {
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.vxh0514-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  min-width: 0;
}

.vxh0514-menu a,
.vxh0514-drop-btn {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  border: 0;
  border-radius: 8px;
  padding: 0 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
}

.vxh0514-menu a:hover,
.vxh0514-drop:hover .vxh0514-drop-btn,
.vxh0514-menu .is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.vxh0514-drop {
  position: relative;
}

.vxh0514-caret {
  width: 0;
  height: 0;
  margin-left: 6px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.vxh0514-drop-list {
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  display: none;
  min-width: 168px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(7, 10, 18, 0.98);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
}

.vxh0514-drop:hover .vxh0514-drop-list {
  display: grid;
  gap: 4px;
}

.vxh0514-drop-list a {
  justify-content: flex-start;
  width: 100%;
}

.vxh0514-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.vxh0514-lang,
.vxh0514-ghost,
.vxh0514-primary {
  height: 38px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding: 0 14px;
}

.vxh0514-lang {
  color: rgba(255, 255, 255, 0.86);
}

.vxh0514-lang option {
  color: #111827;
}

.vxh0514-primary {
  border-color: rgba(0, 228, 255, 0.55);
  color: #02040a;
  background: #00e4ff;
  font-weight: 800;
}

.vxh0514-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.vxh0514-hero,
.vxh0514-section,
.vxh0514-footer {
  position: relative;
  z-index: 1;
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
}

.vxh0514-hero {
  min-height: calc(100vh - 76px);
  display: grid;
  align-content: center;
  padding: 78px 0 64px;
  text-align: center;
}

.vxh0514-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin: 0 auto 22px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 228, 255, 0.26);
  border-radius: 999px;
  background: rgba(0, 228, 255, 0.06);
  color: #9befff;
  font-size: 12px;
  font-weight: 700;
}

.vxh0514-hero h1 {
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 900;
}

.vxh0514-gradient {
  color: transparent;
  background: linear-gradient(90deg, #fff 8%, #00e4ff 92%);
  -webkit-background-clip: text;
  background-clip: text;
}

.vxh0514-sub {
  max-width: 760px;
  margin: 28px auto 0;
  color: rgba(231, 238, 255, 0.72);
  font-size: 18px;
  line-height: 1.8;
}

.vxh0514-strategy {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin: 8px 6px 0;
  padding: 0 12px;
  border: 1px solid rgba(0, 228, 255, 0.28);
  border-radius: 8px;
  color: #00e4ff;
  background: rgba(0, 228, 255, 0.07);
  font: 700 13px/1 Consolas, Monaco, monospace;
  text-transform: uppercase;
}

.vxh0514-join {
  margin: 34px auto 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  width: min(580px, 100%);
}

.vxh0514-join input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 0 22px;
  color: #fff;
  background: #05070c;
  outline: none;
}

.vxh0514-join a {
  min-width: 138px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: #02040a;
  background: #00e4ff;
  font-weight: 900;
}

.vxh0514-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(850px, 100%);
  margin: 58px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.vxh0514-stat {
  padding: 26px 18px;
  background: rgba(2, 4, 10, 0.5);
}

.vxh0514-stat b {
  display: block;
  color: #00e4ff;
  font-size: 30px;
}

.vxh0514-stat span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.vxh0514-section {
  padding: 86px 0 0;
}

.vxh0514-section-head {
  text-align: center;
  margin: 0 auto 34px;
}

.vxh0514-section-head h2 {
  margin: 0;
  font-size: clamp(28px, 4.5vw, 52px);
  line-height: 1.1;
}

.vxh0514-section-head p {
  max-width: 680px;
  margin: 14px auto 0;
  color: rgba(231, 238, 255, 0.66);
  line-height: 1.7;
}

.vxh0514-video {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.045);
}

.vxh0514-video-frame {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 228, 255, 0.12), rgba(80, 96, 255, 0.12)),
    #05070c;
}

.vxh0514-video-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

.vxh0514-play {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 34px;
}

.vxh0514-video-empty {
  max-width: 460px;
  text-align: center;
  color: rgba(255, 255, 255, 0.62);
}

.vxh0514-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.vxh0514-card {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 28px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
}

.vxh0514-card h3 {
  margin: 18px 0 10px;
  font-size: 21px;
}

.vxh0514-card p {
  margin: 0;
  color: rgba(231, 238, 255, 0.64);
  line-height: 1.7;
}

.vxh0514-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 228, 255, 0.25);
  border-radius: 8px;
  color: #00e4ff;
  background: rgba(0, 228, 255, 0.08);
  font-size: 24px;
  font-weight: 900;
}

.vxh0514-ieo {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: stretch;
}

.vxh0514-ieo-panel {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 32px;
  background: #0a0d17;
}

.vxh0514-ieo-list {
  display: grid;
  gap: 12px;
}

.vxh0514-ieo-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  min-height: 74px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.vxh0514-ieo-item b {
  font-size: 16px;
}

.vxh0514-ieo-item span {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
}

.vxh0514-ieo-item em {
  color: #00e4ff;
  font-style: normal;
  font-weight: 900;
}

.vxh0514-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px dashed rgba(169, 184, 220, 0.32);
  border-radius: 8px;
  overflow: hidden;
}

.vxh0514-trust .vxh0514-card {
  border: 0;
  border-radius: 0;
  border-right: 1px dashed rgba(169, 184, 220, 0.22);
  background: rgba(255, 255, 255, 0.02);
}

.vxh0514-trust .vxh0514-card:last-child {
  border-right: 0;
}

.vxh0514-footer {
  padding: 82px 0 32px;
}

.vxh0514-footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 28px;
  padding-bottom: 42px;
}

.vxh0514-footer h4 {
  margin: 0 0 14px;
  font-size: 14px;
}

.vxh0514-footer a {
  display: block;
  margin: 10px 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
}

.vxh0514-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
}

.vxh0514-mobile-menu {
  display: none;
}

@media (max-width: 1100px) {
  .vxh0514-nav {
    padding: 0 18px;
  }

  .vxh0514-menu {
    display: none;
  }

  .vxh0514-mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .vxh0514-actions .vxh0514-ghost {
    display: none;
  }

  .vxh0514-mobile-menu.is-open {
    position: fixed;
    inset: 76px 12px auto;
    z-index: 25;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(7, 10, 18, 0.98);
  }

  .vxh0514-mobile-menu a {
    padding: 13px 12px;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.82);
    background: rgba(255, 255, 255, 0.04);
  }
}

@media (max-width: 780px) {
  .vxh0514-nav {
    height: 64px;
  }

  .vxh0514-brand-text,
  .vxh0514-actions .vxh0514-primary {
    display: none;
  }

  .vxh0514-hero,
  .vxh0514-section,
  .vxh0514-footer {
    width: min(100% - 28px, 1200px);
  }

  .vxh0514-hero {
    min-height: auto;
    padding: 54px 0 46px;
  }

  .vxh0514-hero h1 {
    font-size: clamp(42px, 14vw, 68px);
  }

  .vxh0514-sub {
    font-size: 15px;
  }

  .vxh0514-join {
    display: grid;
  }

  .vxh0514-join a {
    width: 100%;
  }

  .vxh0514-stats,
  .vxh0514-grid3,
  .vxh0514-trust,
  .vxh0514-ieo,
  .vxh0514-footer-grid {
    grid-template-columns: 1fr;
  }

  .vxh0514-stat {
    padding: 20px 16px;
  }

  .vxh0514-section {
    padding-top: 58px;
  }

  .vxh0514-card,
  .vxh0514-ieo-panel {
    padding: 22px;
  }

  .vxh0514-trust .vxh0514-card {
    border-right: 0;
    border-bottom: 1px dashed rgba(169, 184, 220, 0.22);
  }

  .vxh0514-trust .vxh0514-card:last-child {
    border-bottom: 0;
  }

  .vxh0514-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}
