:root {
  color-scheme: dark;
  font-family: 'Comic Neue', 'Inter', sans-serif;
  --bg: #120027;
  --surface: rgba(7, 5, 40, 0.92);
  --surface-strong: rgba(12, 9, 55, 0.97);
  --text: #ffffff;
  --muted: #d3d3ff;
  --primary: #fffa3c;
  --accent: #ff3cb8;
  --border: rgba(255, 255, 255, 0.16);
  --meme-green: #3cffb8;
  --meme-pink: #ff3ca8;
  --meme-yellow: #fffa3c;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(135deg, #19002a 0%, #070007 45%, #110022 100%);
  color: var(--text);
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 10% 10%, rgba(255, 255, 0, 0.12), transparent 16%),
    radial-gradient(circle at 85% 20%, rgba(255, 60, 184, 0.16), transparent 22%),
    radial-gradient(circle at 45% 70%, rgba(60, 255, 184, 0.14), transparent 18%),
    repeating-linear-gradient(45deg, transparent 0 32px, rgba(255,255,255,0.04) 32px 34px);
}

.page-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 24px 40px;
  border: 2px dashed rgba(255, 255, 255, 0.18);
  border-radius: 30px;
  position: relative;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 24px;
  position: sticky;
  top: 0;
  background: rgba(8, 0, 35, 0.96);
  border-bottom: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 16px 80px rgba(0, 0, 0, 0.35);
  z-index: 20;
}

.brand {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--meme-yellow);
  text-shadow: 0 0 24px rgba(255, 250, 60, 0.6);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px; /* 图片和文字间距 */
  font-weight: 700;
  font-size: 20px;
}

.logo-icon {
  width: 32px;  /* 控制大小 */
  height: 32px;
  object-fit: contain;
}
.site-nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 500;
}

.site-nav a:hover {
  color: var(--text);
}

.header-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.lang-switch {
  display: flex;
  gap: 8px;
}

.lang-button {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  cursor: pointer;
  font-weight: 700;
}

.lang-button.active {
  color: var(--text);
  background: rgba(71, 255, 159, 0.16);
  border-color: rgba(71, 255, 159, 0.45);
}

.button {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.button-primary {
  background: linear-gradient(135deg, rgba(71, 255, 159, 0.2), rgba(124, 109, 255, 0.2));
  color: var(--text);
  border-color: rgba(71, 255, 159, 0.5);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hero-section {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  padding: 40px 0 60px;
}

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

.eyebrow {
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.22em;
  font-size: 0.82rem;
  font-weight: 700;
}

.hero-copy h1 {
  margin: 16px 0 20px;
  font-size: clamp(3.5rem, 5vw, 6.5rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
  color: #ffeb7f;
  text-shadow: 0 0 24px rgba(255, 60, 184, 0.45), 0 0 40px rgba(60, 255, 184, 0.15);
}

.hero-copy p {
  line-height: 1.8;
  color: #d9d9ff;
  font-size: 1.05rem;
  max-width: 560px;
  font-weight: 500;
}

.meme-badge {
  display: inline-block;
  margin: 18px 0 18px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--meme-green);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 32px 0;
}

.hero-actions .button {
  box-shadow: 0 0 30px rgba(255, 60, 184, 0.12);
}

.hero-actions .button-secondary {
  border-style: dashed;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-stats div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 18px 20px;
}

.hero-stats strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text);
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.96rem;
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.visual-card {
  width: min(100%, 520px);
  position: relative;
  border-radius: 48px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  border: 2px dashed rgba(255, 255, 255, 0.18);
  padding: 28px;
  overflow: hidden;
}

.glow-ball {
  position: absolute;
  top: -40px;
  right: -40px;
  width: 170px;
  height: 170px;
  background: radial-gradient(circle, rgba(71,255,159,0.35), transparent 55%);
  filter: blur(18px);
}

.hero-image {
  width: 100%;
  height: auto;
  border-radius: 28px;
  display: block;
  object-fit: contain;
  background: linear-gradient(135deg, rgba(71,255,159,0.1), rgba(124,109,255,0.08));
}

.info-section,
.steps-section,
.tokenomics-section,
.roadmap-section {
  padding: 60px 0;
}

.section-heading span {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.82rem;
}

.section-heading h2 {
  margin: 14px 0 14px;
  font-size: clamp(2.1rem, 3vw, 3rem);
}

.info-section p {
  color: var(--muted);
  max-width: 800px;
  line-height: 1.9;
  font-size: 1.02rem;
}

.steps-grid,
.token-grid,
.roadmap-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.step-card,
.token-card,
.roadmap-card {
  background: rgba(18, 6, 55, 0.95);
  border: 2px dashed rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  padding: 28px;
  min-height: 220px;
  transform: skew(-1deg, 0deg);
}

.steps-grid article:nth-child(even) {
  transform: skew(1deg, 0deg);
}

.step-card h3,
.token-card h3,
.roadmap-card h3 {
  color: var(--meme-pink);
}

.step-card p,
.token-card p,
.roadmap-card p {
  color: #c9c9ff;
}

.step-icon {
  font-size: 1.35rem;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 18px;
}

.step-card h3,
.token-card h3,
.roadmap-card h3 {
  margin: 0 0 14px;
}

.step-card p,
.token-card p,
.roadmap-card p {
  color: var(--muted);
  line-height: 1.8;
}

.site-footer {
  text-align: center;
  padding: 28px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.94rem;
}

@media (max-width: 960px) {
  .hero-section {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .steps-grid,
  .token-grid,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: stretch;
  }
  .site-nav {
    justify-content: center;
  }
  .button {
    width: 100%;
  }
  .hero-copy h1 {
    font-size: 3.4rem;
  }
}
