body {
      margin: 0;
      font-family: Arial, sans-serif;
      background: #0f172a;
      color: white;
      scroll-behavior: smooth;
    }

    header {
      background: #020617;
      padding: 15px;
      text-align: center;
      font-size: 24px;
      font-weight: bold;
      position: sticky;
      top: 0;
      z-index: 1000;
    }

    /* NAV BAR */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #1e293b;
      padding: 10px 20px;
      position: sticky;
      top: 60px;
      z-index: 999;
    }

    .nav-links {
      display: flex;
      gap: 20px;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-size: 16px;
      cursor: pointer;
    }

    nav a:hover {
      color: #38bdf8;
    }

    /* SEARCH IN NAV */
    .search-wrapper input {
      padding: 8px 12px;
      width: 220px;
      border-radius: 8px;
      border: none;
      outline: none;
    }

    .hero {
      text-align: center;
      padding: 60px 20px;
    }

    .hero h1 {
      font-size: 40px;
      margin-bottom: 10px;
    }

    .hero p {
      color: #94a3b8;
    }

    .section {
      padding: 40px 20px;
      text-align: center;
    }

    .cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 20px;
      padding: 20px;
    }

    .card {
      background: #1e293b;
      padding: 20px;
      border-radius: 10px;
      transition: 0.3s;
    }

    .card:hover {
      transform: scale(1.05);
      background: #334155;
    }

    .card a {
      text-decoration: none;
      color: white;
      font-weight: bold;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #020617;
      margin-top: 40px;
      font-size: 14px;
      color: #94a3b8;
    }


/* =========================
   MARKDOWN GLOBAL STYLING
========================= */

#content {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  text-align: left;
  line-height: 1.7;
  color: #e2e8f0;
}

/* HEADINGS */
#content h1 {
  font-size: 32px;
  margin-top: 20px;
  color: #38bdf8;
}

#content h2 {
  font-size: 26px;
  margin-top: 20px;
  color: #60a5fa;
}

#content h3 {
  font-size: 20px;
  color: #93c5fd;
}

/* PARAGRAPHS */
#content p {
  margin: 10px 0;
  color: #cbd5e1;
}

/* LINKS */
#content a {
  color: #38bdf8;
  text-decoration: underline;
}

/* LISTS */
#content ul {
  padding-left: 20px;
}

#content li {
  margin: 6px 0;
}

/* CODE BLOCKS */
#content pre {
  background: #0f172a;
  padding: 15px;
  border-radius: 10px;
  overflow-x: auto;
  border: 1px solid #334155;
}

#content code {
  color: #f8fafc;
}

/* BLOCKQUOTE (IMPORTANT FOR NOTES) */
#content blockquote {
  border-left: 4px solid #38bdf8;
  padding-left: 10px;
  color: #94a3b8;
  margin: 10px 0;
}
