
    body {
      font-family: 'Poppins', sans-serif;
      background: linear-gradient(180deg, #0d1b2a, #000000);
      color: #fff;
      margin: 0;
    }
/* Navbar */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(90deg, #000, #0d1b2a);
  padding: 15px 40px;
  border-bottom: 2px solid #00ff88;
}

/* Logo and website name */
.logo a {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo img {
  width: 55px;
  height: auto;
}

/* Glowing text */
.glow-text {
  font-size: 28px;
  font-weight: 800;
  color: #00ffcc;
  letter-spacing: 2px;
  text-shadow: 0 0 5px #00ffcc, 0 0 15px #00ffcc, 0 0 30px #00ffaa;
  transition: all 0.3s ease;
}

.glow-text:hover {
  text-shadow: 0 0 20px #00ffaa, 0 0 40px #00ffcc, 0 0 60px #00ffaa;
  transform: scale(1.05);
}

/* Navigation links */
.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.navbar ul li a {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.navbar ul li a i {
  margin-right: 6px;
  color: #00ff88;
  transition: color 0.3s ease;
}

.navbar ul li a:hover {
  color: #00ff88;
}

.navbar ul li a:hover i {
  color: #90e0ef;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .navbar ul {
    flex-direction: column;
    gap: 15px;
    margin-top: 10px;
  }
}


/* Menu icon */
.menu-icon {
  display: none;
  font-size: 28px;
  color: #00ff88;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #000;
    width: 100%;
    text-align: center;
    position: absolute;
    top: 70px;
    left: 0;
    padding: 20px 0;
  }

  .navbar ul.show {
    display: flex;
  }

  .menu-icon {
    display: block;
  }
}


    .cart-link {
      color: #fff;
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 17px;
    }

    .cart-link:hover {
      color: #00ff88;
    }
    .account-page {
      padding: 80px 0;
      background: #00111f;
      min-height: 90vh;
    }

    .form-container {
      background: rgba(0, 0, 0, 0.85);
      padding: 40px;
      border-radius: 12px;
      max-width: 400px;
      margin: auto;
      box-shadow: 0 0 20px #00ff88;
    }

    .form-btn {
      display: flex;
      justify-content: space-around;
      margin-bottom: 30px;
      border-bottom: 2px solid #00ff88;
      padding-bottom: 10px;
    }

    .form-btn span {
      cursor: pointer;
      font-weight: 600;
      color: #00ff88;
      transition: 0.3s;
    }

    .form-btn span:hover {
      text-shadow: 0 0 10px #00ff88;
    }

    form {
      display: none;
    }

    form.active {
      display: block;
    }

    .form-container input {
      width: 100%;
      padding: 10px;
      margin-bottom: 15px;
      border-radius: 6px;
      border: none;
      background: #111;
      color: #fff;
    }

    .btn {
      width: 100%;
      background: linear-gradient(90deg, #00ff88, #0077b6);
      border: none;
      color: white;
      font-weight: 600;
      border-radius: 25px;
      padding: 10px;
      transition: 0.3s;
    }

    .btn:hover {
      transform: scale(1.05);
      background: linear-gradient(90deg, #0077b6, #00ff88);
    }

    .form-container a {
      color: #00ff88;
      text-decoration: none;
      font-size: 14px;
    }

    .form-container a:hover {
      text-decoration: underline;
    }
    .footer {
      background: #000;
      color: #8f8f8f;
      font-size: 14px;
      padding: 40px 0 20px;
    }

    .footer h3 {
      color: #00ff88;
      margin-bottom: 20px;
      font-size: 18px;
    }

    .footer p {
      color: #ccc;
      font-size: 14px;
    }

    .footer-col-1, .footer-col-2, .footer-col-3, .footer-col-4 {
      min-width: 250px;
      margin-bottom: 20px;
    }

    .footer-col-2 img {
      width: 100px;
      margin-bottom: 15px;
      filter: drop-shadow(0 0 10px #00ff88);
    }

    .app-logo img {
      width: 140px;
      margin-top: 10px;
    }

    .footer ul {
      list-style: none;
      padding: 0;
    }

    .footer ul li {
      margin-bottom: 10px;
      color: #ccc;
      transition: 0.3s;
    }

    .footer ul li:hover {
      color: #00ff88;
    }

    .footer hr {
      border: none;
      background: #00ff88;
      height: 1px;
      margin: 20px 0;
    }

    .copyright {
      text-align: center;
      color: #00ff88;
      font-size: 13px;
    }
    @media (max-width: 768px) {
      .navbar ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
      }
      .header h1 {
        font-size: 2rem;
        text-align: center;
      }
      .footer .row {
        text-align: center;
      }
    }
  