body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: 'Orbitron', 'Exo', Arial, sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}

#starfield {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 0;
  pointer-events: none;
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.character {
  width: 320px;
  max-width: 80vw;
  border-radius: 1.5rem;
  box-shadow: 0 0 40px 10px rgba(0, 80, 255, 0.25), 0 0 0 4px #1a1a3a;
  margin-bottom: 2rem;
  transition: box-shadow 0.4s;
}

.character:hover {
  box-shadow: 0 0 60px 20px #00eaff88, 0 0 0 4px #1a1a3a;
}

.title {
  font-size: 2.5rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  margin: 0 0 1.2rem 0;
  background: linear-gradient(90deg, #00eaff 30%, #6f7cff 70%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 12px #00eaff44;
}

.community-link {
  display: inline-block;
  margin: 1.5rem 0 1.5rem 0;
  padding: 1.2rem 2.5rem;
  font-size: 1.25rem;
  font-family: 'Orbitron', 'Exo', Arial, sans-serif;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(90deg, #00eaff 0%, #6f7cff 100%);
  border-radius: 2rem;
  box-shadow: 0 0 32px #00eaffcc, 0 0 8px #6f7cffcc;
  text-decoration: none;
  text-align: center;
  letter-spacing: 0.04em;
  transition: box-shadow 0.3s, transform 0.2s;
  outline: none;
  position: relative;
}
.community-link:hover {
  box-shadow: 0 0 48px #00eaff, 0 0 16px #6f7cff;
  transform: translateY(-2px) scale(1.04);
}
.community-code {
  display: block;
  font-size: 1.1em;
  font-weight: 900;
  color: #00eaff;
  letter-spacing: 0.08em;
  text-shadow: 0 0 12px #00eaff88, 0 0 2px #fff;
  margin-bottom: 0.3em;
}

.tagline {
  font-size: 1.1rem;
  color: #b0c4ff;
  margin: 0 0 2rem 0;
  max-width: 400px;
}

.logo {
  width: 80px;
  margin-top: 2rem;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px #00eaff88);
}

.cta {
  display: none;
}

.tweet-section {
  display: flex;
  align-items: flex-start;
  background: rgba(10, 20, 40, 0.95);
  border-radius: 1.5rem;
  box-shadow: 0 0 32px #00eaff33, 0 0 4px #6f7cff44;
  margin: 2.5rem auto 2rem auto;
  max-width: 600px;
  padding: 2rem 1.5rem 1.5rem 1.5rem;
  gap: 1.5rem;
  z-index: 2;
  position: relative;
}
.elon-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 12px #00eaff88;
  flex-shrink: 0;
}
.tweet-content {
  flex: 1;
}
.tweet-header {
  display: flex;
  align-items: center;
  gap: 0.7em;
  font-size: 1.1em;
  margin-bottom: 0.3em;
}
.elon-name {
  font-weight: 900;
  color: #fff;
}
.elon-handle {
  color: #b0c4ff;
  font-weight: 700;
}
.tweet-time {
  color: #6f7cff;
  font-size: 0.95em;
}
.tweet-text {
  color: #fff;
  font-size: 1.05em;
  margin-bottom: 0.7em;
  line-height: 1.5;
}
.tweet-link {
  color: #00eaff;
  font-weight: 700;
  text-decoration: underline;
  margin-bottom: 0.7em;
  display: inline-block;
}
.tweet-link:hover {
  color: #6f7cff;
}
.tweet-image img {
  width: 100%;
  border-radius: 1rem;
  margin-top: 0.7em;
  box-shadow: 0 0 16px #00eaff44;
}

.contract-section {
  margin: 1.5rem 0 0.5rem 0;
  padding: 1rem 2rem;
  background: rgba(10, 20, 40, 0.85);
  border-radius: 1.2rem;
  box-shadow: 0 0 16px #00eaff44;
  display: inline-block;
  font-size: 1.1rem;
  font-family: 'Orbitron', 'Exo', Arial, sans-serif;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
}
.contract-label {
  color: #b0c4ff;
  margin-right: 0.5em;
}

@media (max-width: 600px) {
  .character {
    width: 90vw;
  }
  .title {
    font-size: 1.5rem;
  }
  .cta {
    font-size: 1rem;
    padding: 0.8rem 1.5rem;
  }
  .logo {
    width: 56px;
  }
}

@media (max-width: 700px) {
  .tweet-section {
    flex-direction: column;
    align-items: center;
    padding: 1.2rem 0.7rem 1rem 0.7rem;
    gap: 1rem;
  }
  .elon-avatar {
    width: 48px;
    height: 48px;
  }
  .tweet-image img {
    border-radius: 0.7rem;
  }
  .contract-section {
    padding: 0.7rem 1rem;
    font-size: 1rem;
  }
} 