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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #0a0a0f;
  color: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

/* HEADER */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 5%;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

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

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-btn {
  padding: 10px 24px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 8px;
  color: #667eea;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.about-btn:hover {
  background: rgba(102, 126, 234, 0.2);
  transform: translateY(-2px);
}

/* MAIN */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 60px 20px;
}

.tag {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(102, 126, 234, 0.1);
  border: 1px solid rgba(102, 126, 234, 0.3);
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 24px;
  color: #667eea;
}

h1 {
  font-size: 56px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 700px;
  margin: 0 auto 32px;
  line-height: 1.8;
}

.spots {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #667eea;
}

.spots span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 500;
  display: block;
  margin-top: 4px;
}

/* STEPS */
.steps {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 48px 0;
  flex-wrap: wrap;
}

.step {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.step.active {
  background: rgba(102, 126, 234, 0.15);
  border-color: #667eea;
  color: #667eea;
}

.step span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
}

.step.active span {
  background: #667eea;
  color: #fff;
}

/* EMAIL BOX */
.email-box {
  max-width: 500px;
  margin: 48px auto;
  padding: 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.email-box h2 {
  font-size: 24px;
  margin-bottom: 24px;
}

.email-box input {
  width: 100%;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.email-box input:focus {
  outline: none;
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.email-box input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.generate-btn {
  display: inline-block;
  width: 100%;
  padding: 16px 32px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  text-align: center;
}

.generate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.4);
}

/* WHY JOIN SECTION */
.why-join {
  padding: 80px 20px;
  text-align: center;
}

.why-join h2 {
  font-size: 40px;
  margin-bottom: 48px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: #667eea;
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
}

.card .icon {
  font-size: 48px;
  margin-bottom: 16px;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* FEATURE CARDS */
.feature-card {
  padding: 32px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  border-color: #667eea;
  background: rgba(102, 126, 234, 0.05);
}

.feature-card .icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
}

/* FINAL CTA */
.final-cta {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
  border-radius: 24px;
  margin: 60px 0;
}

.final-cta h2 {
  font-size: 40px;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  line-height: 1.8;
}

.join-btn {
  display: inline-block;
  padding: 18px 48px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 8px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
}

.join-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(102, 126, 234, 0.4);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 60px;
}

.follow-btn {
  display: inline-block;
  padding: 12px 32px;
  background: rgba(29, 161, 242, 0.1);
  border: 1px solid rgba(29, 161, 242, 0.3);
  border-radius: 8px;
  color: #1da1f2;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.follow-btn:hover {
  background: rgba(29, 161, 242, 0.2);
  transform: translateY(-2px);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  .hero-text {
    font-size: 16px;
  }

  .spots {
    font-size: 24px;
  }

  .why-join h2,
  .final-cta h2 {
    font-size: 32px;
  }

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

  .steps {
    flex-direction: column;
    align-items: stretch;
  }

  .email-box {
    padding: 24px;
  }
  
  .partners-track {
    animation: scroll 20s linear infinite;
  }
  
  /* Tokenomics responsive */
  section.why-join > div > div:first-child {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* PARTNERS SCROLL ANIMATION */
.partners-scroll {
  overflow: hidden;
  padding: 20px 0;
  max-width: 100%;
}

.partners-track {
  display: flex;
  gap: 24px;
  animation: scroll 25s linear infinite;
  width: fit-content;
}

.partner-item {
  flex-shrink: 0;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.partners-track:hover {
  animation-play-state: paused;
}
