<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>TruVerse - Decentralized Social Media</title>
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <!-- Header -->
  <header>
    <div class="container">
      <h1>TruVerse</h1>
      <p>Your decentralized social media platform. Own your data, connect freely.</p>
      <a href="#signup" class="cta-button">Join Waitlist</a>
    </div>
  </header>

  <!-- Features Section -->
  <section id="features">
    <div class="container">
      <h2>Why TruVerse?</h2>
      <div class="feature-list">
        <div class="feature">
          <h3>Decentralized</h3>
          <p>No central authority. You own your data.</p>
        </div>
        <div class="feature">
          <h3>Privacy-First</h3>
          <p>End-to-end encryption for all your communications.</p>
        </div>
        <div class="feature">
          <h3>Community-Driven</h3>
          <p>Governed by users, for users.</p>
        </div>
      </div>
    </div>
  </section>

  <!-- Call-to-Action Section -->
  <section id="signup">
    <div class="container">
      <h2>Join the Revolution</h2>
      <p>Be the first to experience TruVerse. Sign up for early access!</p>
      <form action="https://your-email-service.com/subscribe" method="POST">
        <input type="email" name="email" placeholder="Enter your email" required>
        <button type="submit">Get Early Access</button>
      </form>
    </div>
  </section>

  <!-- Footer -->
  <footer>
    <div class="container">
      <p>&copy; 2023 TruVerse.app | <a href="#">Privacy Policy</a> | <a href="#">Terms of Service</a></p>
      <div class="social-links">
        <a href="#">Twitter</a> | <a href="#">Discord</a> | <a href="#">GitHub</a>
      </div>
    </div>
  </footer>
</body>
</html>

.feature-list {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.feature {
  flex: 1;
  margin: 10px;
  max-width: 300px;
}

.feature h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

/* Signup Section */
#signup {
  background: #f4f4f4;
  padding: 40px 0;
  text-align: center;
}

#signup h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

#signup form {
  display: flex;
  justify-content: center;
  align-items: center;
}

#signup input {
  padding: 10px;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-right: 10px;
}

#signup button {
  padding: 10px 20px;
  background: #007BFF;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Footer */
footer {
  background: #333;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}

footer a {
  color: #007BFF;
  text-decoration: none;
}

footer .social-links {
  margin-top: 10px;
}