* {
      margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', sans-serif;
    }
    body {
      background: #0b1120;
      color: white;
      overflow-x: hidden;
    }
    nav {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1rem 1rem;
      background: rgba(11, 17, 32, 0.8);
      backdrop-filter: blur(10px);
      position: fixed;
      top: 0;
      z-index: 100;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .logo img {
      height: 60px;
    }
    .nav-links {
      display: flex;
      gap: 1rem;
      list-style: none;
      margin: 0;
    }
    .nav-links li a {
      color: white;
      text-decoration: none;
      font-size: 1rem;
      font-weight: 500;
    }
    .btn {
      background: #9fef00;
      color: #000;
      padding: 0.5rem 1rem;
      font-weight: bold;
      border-radius: 5px;
      border: none;
      cursor: pointer;
      text-decoration: none;
    }
    
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }
    .menu-toggle span {
      height: 3px;
      background: white;
      margin: 4px 0;
      width: 25px;
    }
    header {
      text-align: center;
      padding: 8rem 1rem 4rem;
      position: relative;
      z-index: 2;
    }
    header h1 {
      font-size: 3rem;
      font-weight: 800;
      margin-bottom: 1rem;
    }
    header p {
      max-width: 700px;
      margin: 0 auto 2rem;
      font-size: 1.1rem;
      color: #9daec7;
    }
    .discover-btn {
      background: #9fef00;
      color: black;
      font-weight: bold;
      padding: 0.8rem 2rem;
      border-radius: 5px;
      font-size: 1rem;
      cursor: pointer;
      border: none;
    }
    .discover-btn a {
      text-decoration: none;
      color: black;
    }
    canvas#bgCanvas {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 0;
    }
    footer {
      width: 100%;
      background: #0b1120;
      padding: 1rem 0;
      overflow: hidden;
      border-top: 1px solid rgba(255,255,255,0.1);
      position: fixed;
      bottom: 0;
      left: 0;
      z-index: 50;
    }
    .footer-scroll {
      white-space: nowrap;
      animation: scroll 40s linear infinite;
      display: flex;
      align-items: center;
      gap: 2rem;
      height: 40px;
      padding-left: 100%;
    }
    .footer-scroll img {
      filter: grayscale(100%);
      opacity: 0.8;
      height: 30px;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-100%); }
    }

    @media (max-width: 768px) {
      .nav-links {
        display: none;
        flex-direction: column;
        background: #0b1120;
        position: absolute;
        top: 70px;
        right: 0;
        padding: 1rem;
        width: 200px;
        border-left: 1px solid rgba(255,255,255,0.1);
      }
     .nav-links.active {
    display: flex;
  }
      
      .menu-toggle {
        display: flex;
      }
      header h1 {
        font-size: 2rem;
      }
      header p {
        font-size: 0.95rem;
      }
    }