    :root {
      --primary: #8C45A4;
      --dark: #0f1724;
      --muted: #7b7f87;
      font-family: 'Inter', system-ui, sans-serif;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: #0f1724;
      color: #fff;
      font-family: var(--font-family, 'Inter', system-ui, sans-serif);
    }

    header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 16px 20px;
      background: #111827;
      position: relative;
    }

    .logo {
      font-weight: 800;
      font-size: 22px;
      color: var(--primary);
    }

    nav {
      display: flex;
      gap: 12px;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      font-weight: 600;
      padding: 8px 12px;
      border-radius: 6px;
      transition: background-color 0.3s ease;
    }

    nav a:hover {
      background: var(--primary);
    }

    /* Our Community Section */
    .stats {
      padding: 60px 20px;
      text-align: center;
      background: white;
      border-radius: 16px;
      max-width: 1100px;
      margin: 40px auto;
      box-shadow: 0 8px 24px rgba(140, 69, 164, 0.3);
    }

    .stats h2 {
      font-size: 32px;
      margin-bottom: 32px;
      color: white;
      font-weight: 700;
      letter-spacing: 1.2px;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 32px;
      max-width: 1000px;
      margin: auto;
    }

    .stat {
      background: #111827;
      padding: 30px 20px;
      border-radius: 16px;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      cursor: default;
    }

    .stat:hover,
    .stat:focus-within {
      transform: translateY(-6px);
      box-shadow: 0 10px 30px rgba(140, 69, 164, 0.6);
    }

    .stat h3 {
      font-size: 36px;
      color: var(--primary);
      margin-bottom: 12px;
      font-weight: 800;
      letter-spacing: 1.1px;
    }

    .stat p {
      color: #d1d5db;
      font-weight: 600;
      font-size: 18px;
      letter-spacing: 0.5px;
    }

    /* Hamburger */
    .menu-toggle {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #fff;
      border-radius: 2px;
    }

    .hero {
      text-align: center;
      padding: 60px 20px;
      background: linear-gradient(160deg, var(--primary), #b56fd6);
    }

    .hero h1 {
      font-size: 40px;
      margin-bottom: 16px;
    }

    .hero p {
      max-width: 600px;
      margin: 0 auto 24px;
      font-size: 16px;
    }

    .download-buttons {
      display: flex;
      justify-content: center;
    }

    .download-buttons a {
      background: #fff;
      color: var(--primary);
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
      transition: 0.3s;
    }

    .download-buttons a:hover {
      background: #d9b3e6;
      color: var(--dark);
    }

    /* Features */
    .features {
      padding: 60px 20px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      /* 3 per row on desktop */
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }

    .feature {
      background: #1f2937;
      padding: 20px;
      border-radius: 12px;
      text-align: center;
    }

    .feature h3 {
      color: var(--primary);
      margin-bottom: 10px;
    }

    /* Screenshots */
    .screenshots {
      padding: 60px 20px;
      text-align: center;
    }

    .screenshots div {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 16px;
    }

    .screenshots img {
      max-width: 280px;
      width: 100%;
      border-radius: 12px;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
    }

    /* Stats */
    .stats {
      padding: 60px 20px;
      background: #1f2937;
      border-radius: 16px;
      margin: 40px auto;
      max-width: 1100px;
      text-align: center;
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 24px;
    }

    .stat {
      background: #111827;
      padding: 20px;
      border-radius: 12px;
    }

    .stat h3 {
      color: var(--primary);
      font-size: 28px;
    }


    #contact {
      padding: 60px 20px;
      text-align: center;
    }

    #contact a {
      display: inline-block;
      background: #fff;
      color: var(--primary);
      padding: 12px 20px;
      border-radius: 8px;
      font-weight: 700;
      text-decoration: none;
    }

    footer {
      padding: 20px;
      background: #111827;
      color: var(--muted);
      text-align: center;
    }

    /* Responsive */
    @media (max-width: 768px) {
      nav {
        display: none;
        flex-direction: column;
        background: #111827;
        position: absolute;
        top: 60px;
        right: 20px;
        padding: 12px;
        border-radius: 8px;
        width: 160px;
      }

      nav.show {
        display: flex;
      }

      .menu-toggle {
        display: flex;
      }

      .hero h1 {
        font-size: 28px;
      }

      .features {
        grid-template-columns: repeat(2, 1fr);
        /* 2 per row on tablet/mobile */
        gap: 12px;
      }

      .feature h3 {
        font-size: 16px;
      }

      .feature p {
        font-size: 13px;
      }
    }

    @media (max-width: 480px) {
      .features {
        grid-template-columns: repeat(2, 1fr);
        /* still 2 per row on small phones */
      }

      .hero h1 {
        font-size: 24px;
      }

      .hero p {
        font-size: 14px;
      }
    }

    .logo {
      font-size: 28px;
      font-weight: 700;
      font-family: 'Poppins', sans-serif;
    }

    .logo a {
      color: #b56fd6;
      /* 👈 Set your desired color */
      text-decoration: none;
    }

    .logo a:visited {
      color: #b56fd6;
      /* 👈 Prevent color change after visiting */
    }

    .logo a:hover {
      color: #e4e4e4;
      /* Optional hover color */
    }

    