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

  /* html {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(img/background-img.jpg) no-repeat center center fixed;

    background-attachment: fixed;
    background-size: cover;
    -o-background-size: cover;
    -moz-background-size: cover;
    -webkit-background-size: cover;
    z-index: -1;

    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.yourImage.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='yourImage.jpg', sizingMethod='scale')"
} */

  body {
    font-family: 'Press Start 2P', cursive;
    background: linear-gradient(to bottom, #1a1a40, #7c4286);
    color: #fff;
  }

  .home {max-width: 100vw;}

  .hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

  .bar {
    height: 3px;
    width: 25px;
    background-color: #fff;
    margin: 4px 0;
  }

  li {
    list-style: none;
  }

  li:hover {
    color: #FFD700;
  }

  .container {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    max-height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: background 0.5s ease-in-out;
  }

  .container::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 1;
  }

  .hero-content {
    position: relative;
    z-index: 1;
  }

  .hero-image {
    display: block;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.596);
    padding: 1rem;
    margin: 10px auto;
  }

  .logo-monkey {
    max-width: 220px;
    margin-bottom: 1.5rem;
  }

  h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #FFD700;
  }

  p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 1.5rem auto;
    line-height: 1.6;
  }

  .btn {
    font: 1em 'Press Start 2P', cursive;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ffcc00, #ff6600);
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    font-size: 1rem;
  }

  .btn:hover {
    background: linear-gradient(135deg, #ff6600, #ffcc00);
    transition: background 0.3s ease-in-out;
  }

  .btn a {
    color: #000;
    text-decoration: none;
  }

  .btn:focus {
    outline: 1px solid black;
  }

    .buy-info {
      margin-top: 10px;
    }

  nav {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: absolute;
    top: 0;
    z-index: 10;
  }

  nav ul {
    display: flex;
    list-style: none;
    gap: 1.5rem;
  }

  nav ul li {
    font-size: 0.9rem;
    cursor: pointer;
  }

    section {
    min-height: 90vh;
    padding: 4rem 2rem;
    text-align: center;
  }

  .section-title {
    font-size: 2rem;
    color: #FFD700;
    margin-bottom: 2rem;
  }

  .bubbles-image {
    display: block;
    width: 100%;
    max-width: 300px;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.596);
    padding: 1rem;
    margin: 10px auto;
  }

  .about .buy {
    margin-top: 2rem;
    padding: 1rem 2rem;
  }


  .roadmap-grid {
    display: grid;
    grid-template-columns: repeat(3fr, minmax(250px, 1fr));
    gap: 2rem;
  }

  .roadmap-card {
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid #FFD700;
    padding: 1.5rem;
    border-radius: 20px;
  }
  
.vision {
  display: flex;
  flex-direction: column;
  text-align: start;
}

  #btn1 {
    background: gray;
  }
  #buy-now {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    padding: 1rem 2rem;
    background: #FFD700;
  }

  .team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    justify-items: center;
  }

  .team-member img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1rem;
  }

  .team-member h4, .team-member p {
    margin: 0.5rem 0;
  }

  .team-banner {
    padding: 0 1rem;
    margin: 0 auto;
    width: 100%;
  }

  footer {
    padding: 3rem 2rem;
    background: #140d1d;
    text-align: center;
    border-top: 2px solid #FFD700;
  }

  .footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .footer-links a {
    color: #FFD700;
    text-decoration: none;
    font-size: 0.9rem;
  }

  .footer-socials {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
  }

  .footer-socials img {
    width: 60px;
    margin: 0 1rem;
  }

  #soundToggle {
    margin-left: 1rem;
    transition: transform 0.2s;
  }
  #soundToggle:hover {
    transform: scale(1.2);
  }
  

    @keyframes pulse {
      0% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(255, 204, 0, 0.7);
      }
      100% {
        transform: scale(1.05);
        box-shadow: 0 0 20px rgba(255, 204, 0, 0.7);
      }
    }
    .pulse {
      animation: pulse 1.5s infinite;
    }
  @media (max-width: 768px) {

    .hamburger {
      display: flex;
    }

    nav ul {
      display: none;
    }


    h1 {
      font-size: 1.5rem;
      margin-top: 10px;
    }
    .container {
      margin-top: 50px;
    }

    section {
      min-height: 100vh;
    }

    .btn {
      font-size: 0.8rem;
      padding: 0.7rem 1.5rem;
    }
    
    .btn-group {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
    }

    #btn1 {
      margin-right: 1rem;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
    }

    #sound-toggle {
      display: flex;
    }
    

  }