body {
    font-family: poppins;
    background-color: #000000;
    margin: 0;
    padding: 0;
  }
body h1{
    color:#008fff;
    margin:12px; 
    text-align: center;
}
body h2{
    color:white;
    margin:12px;
}
body h3{
    color:white;
    margin:12px;
}
.logoimg {
    margin: 8px;
    width: 340px;
    height: auto;
  }
  
  .navbar {   border: 2px solid rgba(0, 119, 255, 0.6);
              border-radius: 14px;
              background-color: #333;
              color: white;
              display: flex;
              justify-content: space-between;
              align-items: center;
              padding: 4px 20px;
          }
  .navbar.logo {
              font-size: 40px;
              font-weight: bold;
          }
  .nav-links {
              list-style: none;
              display: flex;
          }
  .nav-links li {
              margin: 0 10px;
          }
  .nav-links a {
              text-decoration: none;
              color: white;
              padding: 10px;
          }
  .nav-links a:hover {
              background-color: #575757;
              border-radius: 5px;
          }
          /* Hamburger Icon */
  .menu-icon {
              font-size: 30px;
              cursor: pointer;
              display: none; /* By default hidden */
          }

  .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      transform: translateX(-100%); /* Fully hidden by default */
      width: 90%;
      height: 100vh;
      background-color:black;
      z-index: 9999;
      flex-direction: column;
      padding: 20px;
      border-right: 2px solid rgba(0, 119, 255, 0.6);
      box-shadow: 4px 0 8px rgba(0, 0, 0, 0.3);
      transition: transform 0.3s ease-in-out;
      display: flex; /* Always use flex so animation works */
      visibility: hidden;
      pointer-events: none;
  }
  
  .mobile-menu.show {
      transform: translateX(0);  /* Slide in */
      visibility: visible;
      pointer-events: auto;
  }
  
  
  .mobile-menu a {
              
              font-size:22px;
              margin-top: 20px;
              border-radius:10px;
              display: block;
              color: white;
              padding: 12px;
              text-decoration: none;
          }
  .mobile-menu a:hover {
              background-color: #575757;
          }
  
   /* Responsive Design */
   @media screen and (max-width: 768px) {
              .nav-links {
                  display: none;
              }
              .menu-icon {
                  display: block;
              }
          }
  /* Close Button */
  .close-btn {
      margin-top: 50px;
      display: block;
      text-align: right;
      padding: 10px;
      cursor: pointer;
      font-size: 20px;
      color: white;
  }
  .close-btn:hover {
      color: #ff4d4d;
  }
  
  .buyoptions{
    border-radius: 10px;
    margin:10px;
    margin-bottom: 20px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
  }
  #buyopt{
    margin-bottom: 20px;
    margin-top: 20px;
    border: 2px solid rgba(0, 119, 255, 0.6);
    width: 280px;
    height: 280px;
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
  
  }
  #buyimg{
    width: 120px;
    height: 120px;
    border-radius: 100px;
    border: 6px solid rgba(0, 119, 255, 0.6);
    margin: auto;
    margin-top: 15px;
    overflow: hidden;
  }
  #buyimg img{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  #buyername{
    color: white;
    border-radius: 10px;
    border:2px solid rgba(0, 119, 255, 0.6);
    background-color: rgb(0, 0, 0);
    margin: 10px 80px;
    padding: 4px;
    text-align: center;
  }
  
  #buyoffers{
    text-align: center;
    margin: 0px 80px;
    color:#008fff;
  
  }
  #buybtn{
    font-size: 17px;
    border-radius: 6px;
    text-align: center;
    margin: 10px 80px;
    padding: 6px;
    background-color:#00b894;
    cursor: pointer;
    
  }
  #buybtn a{
    color: white;
    text-decoration: none;
  }
  
  
  
  
  .carousel-container {
    height:325px;
    margin-top: 10px;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    position: relative;
  }
  
  .carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }
  
  .carousel .slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .carousel img {
    width: 100%;
    height: auto;
    max-height: 90vh;
    object-fit: cover;
  }
  
  /* Navigation Buttons */
  .prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 18px;
    z-index: 10;
    border-radius: 5px;
  }
  
  .prev { left: 10px; }
  .next { right: 10px; }
  
  .prev:hover, .next:hover { background: rgba(0, 0, 0, 0.8); }
  
  /* Dots */
  .dots {
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  
  .dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
  }
  
  .active { background-color: white; }
  
  /* Mobile Responsive */
  @media (max-width: 768px) {
    .carousel-container{ height:auto; }
    .carousel img { max-height: 75vh; }
    .prev, .next { font-size: 14px; padding: 8px; }
  }


  .buygc{
    margin:20px;
    height: 180px;
    width: 290px;
  }

  .buygc img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    border-radius: 18px;
  }

  @media (max-width: 480px) {
  .buygc {
    margin: 10px;
    height: 90px;
    width: 140px;
  }
   #buyopt{
    margin:10px;
    border: 2px solid rgba(0, 119, 255, 0.6);
    width: 140px;
    height: auto;
    border-radius: 10px;
    background-color: rgb(0, 0, 0);
}
#buyimg{
  width: 60px;
  height: 60px;
  border-radius: 100px;
  border: 6px solid rgba(0, 119, 255, 0.6);
  margin: auto;
  margin-top: 15px;
  overflow: hidden;
}

#buyername{
  color: white;
  border-radius: 10px;
  border:2px solid rgba(0, 119, 255, 0.6);
  background-color: rgb(0, 0, 0);
  margin: 10px;
  padding: 4px;
  text-align: center;
}

#buyoffers{
  text-align: center;
  margin: 0px;
  color:#008fff;

}
#buybtn{
  font-size: 17px;
  border-radius: 6px;
  text-align: center;
  margin: 10px;
  padding: 6px;
  background-color:#00b894;
  cursor: pointer;
  
}
}
