/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* GLOBAL */
  body {
    background: #0c0c1d;
    color: #fff;
    font-family: 'Orbitron', sans-serif;
    scroll-behavior: smooth;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  /* NAVBAR */
  header {
    padding: 20px 40px;
    background-color: #0c0c1d;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
  
  .logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #fff;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
  }
  
  .nav-links a {
    color: #ccc;
    padding: 8px 14px;
    border-radius: 5px;
    transition: 0.3s;
  }
  
  .nav-links a:hover,
  .nav-links a.active {
    background: #8f00ff;
    box-shadow: 0 0 10px #8f00ff;
    color: white;
  }
  
  /* HERO */
  .hero {
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(to bottom, #0c0c1d 60%, #1d0f2b);
  }
  
  .icon-glow .icon {
    display: inline-block;
    background: #000;
    border-radius: 50%;
    padding: 30px;
    font-size: 2rem;
    box-shadow: 0 0 30px #8f00ff;
  }
  
  .title {
    font-size: 3rem;
    color: #c285ff;
    margin-top: 20px;
    text-shadow: 0 0 10px #8f00ff;
  }
  
  .subtitle {
    font-size: 1.2rem;
    color: #ccc;
    margin-top: 10px;
  }

  @keyframes popup {
    0% {
      opacity: 0;
      transform: scale(1.05);
    }
    100% {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  .hero-logo {
    animation: popup 0.6s ease-out;
    border-radius: 50%;
    box-shadow: 0 0 20px #8f00ffcc;
  }
  
  /* BUTTON */
  .cta-button {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 28px;
    font-size: 1rem;
    background: #7f00ff;
    border: none;
    color: #fff;
    border-radius: 30px;
    box-shadow: 0 0 15px #8f00ff;
    transition: 0.3s;
  }
  
  .cta-button:hover {
    background: #a94eff;
    box-shadow: 0 0 20px #c285ff;
  }
  
  /* SECTIONS */
  .section {
    padding: 80px 20px;
    text-align: center;
    background-color: #0f0f1f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }
  
  .section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #c285ff;
    text-shadow: 0 0 5px #8f00ff;
  }
  
  .section-description {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1rem;
    color: #ccc;
  }
  
  /* FEATURES */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
  
  .feature-box {
    background: #120d1f;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    border: 1px solid #8f00ff55;
    box-shadow: 0 0 15px #8f00ff66, 0 0 10px #00ffd555;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .feature-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px #8f00ffaa, 0 0 15px #00ffd577;
  }
  
  .feature-box h3 {
    color: #c285ff;
    font-size: 1.2rem;
    margin-bottom: 10px;
  }
  
  .feature-box p {
    font-size: 0.95rem;
    color: #ccc;
  }
  
  /* DEVELOPER CARDS */
  .devs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .dev-card {
    background: linear-gradient(to bottom right, #0e0a1a, #151024);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 0 15px #8f00ff66;
    text-align: left;
    border: 1px solid #8f00ff44;
    transition: 0.3s;
  }
  
  .dev-card:hover {
    box-shadow: 0 0 25px #8f00ffaa;
  }
  
  .dev-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
  }
  
  .dev-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #c285ff;
  }
  
  .dev-name {
    font-weight: bold;
    font-size: 1.1rem;
    color: #fff;
  }
  
  .dev-location {
    font-size: 0.8rem;
    color: #aaa;
  }
  
  .dev-desc {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .dev-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
  }
  
  .skill-tag {
    background: #2a1f3b;
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    box-shadow: 0 0 5px #8f00ff66;
  }
  
  .dev-socials {
    margin-top: 15px;
    display: flex;
    gap: 12px;
    font-size: 1.2rem;
  }
  
  .dev-socials a {
    color: #c285ff;
    transition: 0.3s;
  }
  
  .dev-socials a:hover {
    color: #00ffd5;
  }
  
  /* TESTIMONIALS */
  .testimonials {
    max-width: 1000px;
    margin: 40px auto 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
  }
  
  .testimonial-box {
    background: #120d1f;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 0 15px #8f00ff33;
    border: 1px solid #8f00ff22;
  }
  
  .testimonial-box p {
    font-size: 0.95rem;
    color: #ccc;
    margin-bottom: 10px;
  }
  
  .testimonial-name {
    font-weight: bold;
    color: #c285ff;
    font-size: 1rem;
  }
  
  /* FAQ */
  .faq {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 30px;
    text-align: left;
  }
  
  .faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #8f00ff22;
    padding-bottom: 15px;
  }
  
  .faq-question {
    color: #c285ff;
    font-weight: bold;
    font-size: 1rem;
  }
  
  .faq-answer {
    color: #ccc;
    font-size: 0.95rem;
    margin-top: 5px;
  }
  
  /* DISCLAIMER */
  .disclaimer {
    max-width: 800px;
    margin: 50px auto;
    background: #120d1f;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #8f00ff33;
    box-shadow: 0 0 10px #8f00ff22;
    color: #ccc;
    font-size: 0.9rem;
  }
  
  /* FOOTER */
  footer {
    text-align: center;
    padding: 20px;
    background: #0c0c1d;
    font-size: 0.9rem;
    color: #888;
  }
  
  .highlight {
    color: #c285ff;
  }
  
  /* RESPONSIVE */
  @media (max-width: 768px) {
    .navbar {
      flex-direction: column;
      align-items: center;
    }
  
    .nav-links {
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      width: 100%;
      gap: 12px;
      margin-top: 15px;
    }
  
    .nav-links a {
      font-size: 0.85rem;
      padding: 8px 12px;
    }
  
    .hero {
      padding: 60px 20px;
    }
  
    .title {
      font-size: 2rem;
    }
  
    .features-grid {
      grid-template-columns: 1fr;
    }
  
    .feature-box {
      width: 100%;
    }
  }
  
    /* ABOUT */

    .about-section {
        background: #0f0f1f;
        padding: 80px 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
      }
      
      .about-section .section-title {
        font-size: 2.4rem;
        color: #c285ff;
        margin-bottom: 20px;
        text-shadow: 0 0 10px #8f00ff;
        white-space: normal;
        overflow: visible;
        text-overflow: unset;
      }
      
      
      
      .about-section .section-description {
        font-size: 1rem;
        color: #ccc;
        max-width: 800px;
        margin: 0 auto 50px;
        line-height: 1.6;
      }
      
      .about-highlights {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 30px;
      }
      
      .highlight-box {
        background: #120d1f;
        border-radius: 15px;
        padding: 25px;
        width: 280px;
        border: 1px solid #8f00ff44;
        box-shadow: 0 0 10px #8f00ff88, 0 0 5px #00ffd555;
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: left;
      }
      
      .highlight-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 20px #8f00ffaa, 0 0 10px #00ffd577;
      }
      
      .highlight-box h3 {
        color: #c285ff        ;
        margin-bottom: 10px;
        font-size: 1.2rem;
      }
      
      .highlight-box p {
        color: #bbb;
        font-size: 0.95rem;
        line-height: 1.5;
      }
      
      @media (max-width: 768px) {
        .about-highlights {
          flex-direction: column;
          align-items: center;
        }
      }
      
      /* SUPPORT */

      .support-section {
        background: #0f0f1f;
        padding: 80px 20px;
      }
      
      .support-cards {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 30px;
        margin-top: 40px;
      }
      
      .support-card {
        background: #120d1f;
        border-radius: 16px;
        padding: 30px 20px;
        border: 1px solid #8f00ff33;
        box-shadow: 0 0 12px #8f00ff55, 0 0 6px #00ffd555;
        text-align: center;
        color: #ccc;
        transition: transform 0.3s, box-shadow 0.3s;
      }
      
      .support-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 0 25px #8f00ffaa, 0 0 15px #00ffd577;
      }
      
      .support-card .icon {
        font-size: 2rem;
        margin-bottom: 15px;
        color: #00ffd5;
        width: 40px;
        height: 40px;
        object-fit: contain;
        display: inline-block;
      }
      
      .support-card h3 {
        font-size: 1.3rem;
        color: #c285ff;
        margin-bottom: 10px;
      }
      
      .support-card p {
        font-size: 0.95rem;
      }
      
      .discord-button {
        margin-top: 40px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 12px 24px;
        background: #fb0000;
        border: none;
        border-radius: 30px;
        color: white;
        font-size: 1rem;
        font-weight: bold;
        text-shadow: 0 0 5px #000;
        box-shadow: 0 0 15px #ff0000, 0 0 10px #00ffd5;
        transition: 0.3s;
      }
      
      .discord-button img {
        width: 24px;
        height: 24px;
        filter: brightness(0) invert(1);
      }
      
      .discord-button:hover {
        background: #4752c4;
        box-shadow: 0 0 25px #5865f2, 0 0 15px #ff0000;
      }
    
/* Particle container */
.particle-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }
  
  /* Individual particles */
  .particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: #ff0000; /* Cyan particle color */
    border-radius: 50%;
    animation: moveParticle linear infinite;
    opacity: 0.6;
  }
  
  /* Create random positions and animations */
  .particle:nth-child(1)  { top: 10%;  left: 20%; animation-duration: 12s; }
  .particle:nth-child(2)  { top: 50%;  left: 70%; animation-duration: 14s; }
  .particle:nth-child(3)  { top: 80%;  left: 40%; animation-duration: 16s; }
  .particle:nth-child(4)  { top: 30%;  left: 90%; animation-duration: 18s; }
  .particle:nth-child(5)  { top: 70%;  left: 10%; animation-duration: 15s; }
  .particle:nth-child(6)  { top: 20%;  left: 60%; animation-duration: 17s; }
  .particle:nth-child(7)  { top: 60%;  left: 30%; animation-duration: 19s; }
  .particle:nth-child(8)  { top: 40%;  left: 80%; animation-duration: 13s; }
  
  @keyframes moveParticle {
    0% {
      transform: translateY(0) scale(1);
      opacity: 0.6;
    }
    50% {
      transform: translateY(-100px) scale(1.3);
      opacity: 0.8;
    }
    100% {
      transform: translateY(0) scale(1);
      opacity: 0.6;
    }
  }
  