
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
   


body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #1a0033 0%, #000000 100%);
    color: #ffffff;
    overflow-x: hidden;
    min-height: 100vh;
    
}
nav {
  position: fixed;      
  top: 0;
  left: 0;
  width: 100%;          
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 25px;
  background: #050510;
  border-bottom: 2px solid #00f7ff;
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
  z-index: 10000;        /* stay above everything */
}


    nav h1 {
      margin: 0;
      font-size: 20px;
      color: #00f7ff;
      text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff;
    }

    /* Links */
    .links {
      display: flex;
      gap: 20px;
    }

    .links a {
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      font-size: 15px;
      position: relative;
      transition: 0.3s;
    }

    .links a:hover {
      color: #00f7ff;
      text-shadow: 0 0 8px #00f7ff, 0 0 20px #00f7ff;
    }

  

    /* Hamburger */
    .hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 20px;
  cursor: pointer;
  margin-right: 15px;   /* pull it slightly left */
}


    .hamburger span {
      display: block;
      height: 3px;
      background: #00f7ff;
      border-radius: 3px;
      transition: 0.3s;
      box-shadow: 0 0 8px #00f7ff;
      
    }

    /* Animate to X */
    .hamburger.active span:nth-child(1) {
      transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: translateY(-8px) rotate(-45deg);
    }

    /* Responsive */
    @media (max-width: 768px) {
.links {
  position: fixed;   /* instead of absolute */
  top: 70px;
  right: 15px;
  background: rgba(10, 10, 25, 0.95);
  border: 2px solid #00f7ff;
  border-radius: 10px;
  flex-direction: column;
  width: 220px;
  display: none;
  padding: 20px;
  box-shadow: 0 0 15px #00f7ff, 0 0 40px #00f7ff;
  z-index: 9999;  /* stays on top */
  max-height: 80vh;   /* prevent too tall */
  overflow-y: auto;   /* scroll inside if too long */
}

.links a, .links button {
  margin: 10px 0;
  text-align: left;
}

/* When active → slide in */
.links.active {
  right: 0;
}



      .links.active {
        display: flex;
        animation: fadeIn 0.3s ease;
      }

      .hamburger {
        display: flex;
      }
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    

.NeoPiGO-button {
  background: linear-gradient(90deg, #4e54c8, #8f94fb);
  color: white;
  border: none;
  padding: 6px 10px;
  font-size: 1rem;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 10px rgba(142, 148, 251, 0.7);
}
 
  section {
    padding: 20px 0;
    font-family: Arial, sans-serif;
    color: #F0F0F0; /* light text */
  }
  section h2 {
    color: #00FFFF; /* neon cyan */
    text-shadow: 0 0 8px #00FFFF;
    margin-bottom: 10px;
  }
  section ul {
    list-style: none;
    padding-left: 0;
  }
  section ul li::before {
    content: "✔️ ";
    color: #FF6A00; /* neon orange */
    text-shadow: 0 0 6px #FF6A00;
  }
 



.NeoPiGO-button:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(142, 148, 251, 1);
}

.NeoPiGO-button:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(142, 148, 251, 0.9);
}


 .typewriter {
      font-family: monospace;
      font-size: 0.8em;
      color: #00ffe7;
      display: inline-block;
    }

    .typewriter::after {
      content: '|';
      color: #00ffe7;
      animation: blinkCursor 0.7s infinite;
    }

    @keyframes blinkCursor {
      0% { opacity: 1; }
      50% { opacity: 0; }
      100% { opacity: 1; }
    }
 


    header {
      height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      padding: 2rem;
      animation: floatText 2s ease-in-out infinite;
    }
    header h1 {
      font-size: 3rem;
      background: linear-gradient(to right, #00faff, #ff00c8);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      font-family: 'Orbitron', monospace;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1.1;
    }
    header p {
      margin-top: 1rem;
      color: #ccc;
      font-size: 1.3rem;
      max-width: 800px;
    z-index: 10;
    position: relative;
    }
    header button {
      background: linear-gradient(45deg, #00FFFF, #0080FF, #00BFFF);
    background-size: 200% 200%;
    color: #000000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3)
    }
    header button:hover {
      background: #ff00c8;
    }
  
  
        .marquee {
            background: #0b0d2b;
            padding: 1rem;
            overflow: hidden;
            white-space: nowrap;
        }

        .marquee span {
            display: inline-block;
            font-size: 1.2rem;
            color: #00f5d4;
            animation: marquee 20s linear infinite;
        }

        @keyframes marquee {
            0% { transform: translateX(50%); }
            100% { transform: translateX(-100%); }
        }
    section {
      padding: 5rem 2rem;
      max-width: 1200px;
      margin: auto;
    }
    .section-title {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      color: #00faff;
    }
    .features, .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
    }
    .card {
      background: rgba(255,255,255,0.15);
      padding: 2rem;
      border-radius: 1rem;
      transition: transform 0.3s;
    }
   .card:hover {
            transform: translateY(-15px) rotate(2deg);
            border: 2px solid #00f5d4;
            box-shadow: 0 0 40px rgba(0, 245, 212, 0.7);
    }
    .card i {
      font-size: 2rem;
      color: #ff00c8;
      margin-bottom: 1rem;
    }
    .card h3 {
      font-size: 1.2rem;
      margin-bottom: 0.5rem;
    }
    .card p {
      color: #ccc;
    }
    form {
      background: rgba(255,255,255,0.05);
      padding: 2rem;
      border-radius: 1rem;
      text-align: center;
    }
    form input {
      padding: 1rem;
      width: 100%;
      margin-bottom: 1rem;
      border-radius: 0.5rem;
      border: none;
      background: #333;
      color: white;
    }
    form button {
      padding: 1rem 2rem;
      background: #ff00c8;
      border: none;
      border-radius: 0.5rem;
      cursor: pointer;
    }
 
.NeoPiGO-footer {
  background-color: #0a0a0a;
  color: #f0f0f0;
  padding: 30px 15px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
}

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 15px;
}

.footer-brand {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 10px;
}

.footer-social a {
  color: #f0f0f0;
  font-size: 20px;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-social a:hover {
  color: #00ffd0;
}

.footer-links {
  margin: 15px 0;
}

.footer-links a {
  color: #ccc;
  margin: 0 10px;
  font-size: 14px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #00ffd0;
  text-decoration: underline;
}

.footer-bottom {
  font-size: 13px;
  color: #888;
  margin-top: 10px;
}
#particles-js {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  background: radial-gradient(circle at center, #0d0221 0%, #0a0016 100%);
  z-index: -1;
}

.join-section {
  padding: 80px 20px;
  text-align: center;
  color: white;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
}

.join-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.join-section p {
  margin-bottom: 20px;
  color: #00faff;
}

.join-section button {
    align: center;
  background: linear-gradient(45deg, #FFFFFF, #F080FF, #F0BFFF);
    background-size: 200% 200%;
    color: #000000;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 255, 255, 0.3)
}

.join-section:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(142, 148, 251, 1);
}

.join-section:active {
  transform: scale(0.95);
  box-shadow: 0 0 15px rgba(142, 148, 251, 0.9);
}



@keyframes floatText {
      0% { transform: translateY(0); }
      50% { transform: translateY(+15px); }
      100% { transform: translateY(0); }
 }
 .container {
      max-width: 1000px;
      margin: auto;
      padding: 60px 20px;
    }

    .icard {
      background: rgba(30, 41, 59, 0.85);
      padding: 30px;
      margin: 50px 0;
      border-radius: 20px;
      box-shadow: 0 0 20px rgba(56, 189, 248, 0.25);
      opacity: 0;
      transform: translateY(60px) scale(0.95);
      transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
      backdrop-filter: blur(6px);
    }

    .icard.show {
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    /* Alternate entry directions */
    .icard.left {
      transform: translateX(-80px) scale(0.95);
    }
    .icard.right {
      transform: translateX(80px) scale(0.95);
    }
    .icard.left.show, .icard.right.show {
      transform: translateX(0) scale(1);
    }

h2 {
      font-size: 1.6rem;
      margin-bottom: 15px;
      background: linear-gradient(90deg, #06b6d4, #3b82f6);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    ul li {
      margin-bottom: 10px;
    }

    blockquote {
      border-left: 4px solid #38bdf8;
      padding-left: 15px;
      margin: 20px 0;
      font-style: italic;
      color: #bae6fd;
    }

    .icard:hover {
      box-shadow: 0 0 30px rgba(56, 189, 248, 0.45);
      transform: scale(1.02);
    }

 
  #xp-bubble {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 70px;
    height: 70px;
    background: #4caf50;
    color: white;
    font-weight: bold;
    font-size: 14px;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    cursor: grab;
    user-select: none;
    flex-direction: column;
    text-align: center;
  }

  #xp-popup {
    position: absolute;
    bottom: 80px;
    right: 0;
    background: orange;
    color: black;
    border-radius: 12px;
    padding: 10px;
    font-size: 14px;
    width: 180px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 10000;
  }