<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Chutiyaap Central | Hub of Chaos</title>
  <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;800&display=swap" rel="stylesheet">
  <link rel="stylesheet" href="styles.css">
</head>
<body>
  <!-- Nav -->
  <header>
    <div class="nav-container">
      <a href="index.html" class="logo">🔥 Chutiyaap</a>
      <nav class="nav-links" id="links">
        <a href="brown-and-broke.html">Brown & Broke</a>
        <a href="fukra-fridays.html">Fukra Fridays</a>
        <a href="toxic-traits.html">Toxic Traits</a>
        <a href="who.html">Who TF Are We?</a>
        <a href="admin.html">Admin</a>
      </nav>
      <button id="menuBtn">☰</button>
    </div>
  </header>

  <!-- Hero -->
  <section class="hero">
    <h1>CHUTIYAAP CENTRAL</h1>
    <p>Hub of chaos. Your homepage. The heartbeat of the circus.</p>
    <a href="#latest" class="btn-primary">Jump to Latest 🍿</a>
  </section>

  <!-- Latest Posts -->
  <section id="latest" class="hide">
    <h2 class="section-title">🔥 Latest Drops</h2>
    <div id="posts" class="card-grid"></div>
  </section>

  <footer>
    &copy; <span id="year"></span> Chutiyaap. Built with zero chill & unlimited caffeine.
  </footer>

  <script src="main.js"></script>
</body>
</html>
