.Navbar
{
    display: flex;
    justify-content: space-between;
    padding: 0rem 9rem;
    height: 97px;
        position: fixed;
    width: 100%;
    background: black;
    z-index: 999;
    top: 0;
}
.SiteLogo
{
    height: 50px;
    width: auto;
}
.NavbarLeft
{
    display: flex;
    align-items: center;
    gap: 4rem;
}
.NavbarLinks
{
    display: flex; 
    align-items: center; 
    gap: 36px; 
    margin-right: 10px; 
    position: relative;
}
.NavbarLinkItem
{
    color: white;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 400;
    text-decoration: none;
}
.NavbarLinkItem:hover
{
    color: #89ff00;
}
.NavbarLinkItem span
{
    display: flex;
    align-items: center;
    gap: .5rem;
}
.NavbarLinkItem span svg
{
    width: .75rem;
    height: .75rem;
    transition-duration: .3s;
    transition-property: transform;
}
.NavbarLinkItem span:hover svg
{
    transform: rotate(180deg);
    transition-duration: .3s;
    transition-property: transform;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
}
.BeginTab:hover .ShowOnHoverContainer
{
    display:block;
}
.ShowOnHoverContainer
{
    padding-top: 15px;
    position: absolute;
    display: none;

}
.ShowOnHover
{
    flex-direction: column;
    width: 210px;
    border: 1px solid #434343;
    border-radius: .75rem;
    display: flex;
    overflow: hidden;
    background-color: black;
}
.ShowOnHover a{
    text-decoration: none;
    border-bottom: 1px solid #434343;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    padding-top: .5rem;
    padding-bottom: .5rem;
    padding-left: .75rem;
    padding-right: .75rem;
}
.ShowOnHover a:nth-child(3)
{
border-bottom: none;
}
.ShowOnHover a:hover{
    color: #89ff00;
    background-color: #2a2a2a;
}
.NavbarRight
{
    display: flex;
    align-items: center;
    gap: 2.5rem;

}
.PopG-Exchange-Rate
{
    position: relative;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
}
.PopG-Exchange-Rate:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 8px;
    border: 2px solid transparent;
    background: linear-gradient(90deg, #8f0, #000 20%, #000 80%, #8f0) border-box;
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
}
.PopG-Exchange-Rate span 
{
    line-height: 21.6px;
    font-size: 1.1rem;
    font-weight: 500;
    text-shadow: 0 .2px 4px #b2f000;
    color: #fff !important;
}
.LoginRegisterButtons
{
    display: flex;
    align-items: center;
    gap: 1.25rem !important;
}


.LoginRegisterButtons .LoginButton,
.LoginRegisterButtons .RegisterButton
{
    color: black;
  border-radius: 12px;
  width: 7rem; 
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem; 
  font-weight: bold;
  line-height: 1.25rem;
  background-color:rgba(137, 255, 0, 1.882);
  transition: background-color 0.3s;
  text-decoration: none;
}
.LoginRegisterButtons .RegisterButton
{
    color: white;
  border: 1px solid #9a9a9a !important;
  transition: opacity 0.3s;
  background-color: transparent;
}
.LoginRegisterButtons .LoginButton:hover
{
    background-color:#61b400 !important;
}
.LoginRegisterButtons .RegisterButton:hover {
    opacity: 0.75;
  }

  .translate-x-full {
    transform: translateX(100%);
}
.translate-x-0 {
    transform: translateX(0%);
}
.hidden
{
    display: none;
}


/* Mobile Menu   */
.MobileMenu
{
    background-color: rgba(0, 0, 0, .6);
    width: 100%;
    min-height: calc(100vh - 4rem);
    z-index: 20;
    top: 4.25rem;
    right: 0;
    position: fixed;
}
.MobileMenuInner
{
    transition-duration: .3s;
    width: 13rem;
    height: calc(100vh - 4rem);
    z-index: 30;
    top: 4.25rem;
    right: 0;
    position: fixed;
    /* transform: translate(3.8501%) rotate(0deg) skewX(0deg) skewY(0deg) scaleX(1) scaleY(1); */
}
.MobileMenuInnerContainer
{
    display: flex;
    height: 100%;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    background-color: #121212;
}
.MobileMenuLinks
{
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
    display:flex;
}
.MobileMenuButtonWrapper
{
    display: flex;
    justify-content: center;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    gap: 10px;
    align-items: center;
    width: 90%;
    margin: 0 auto;
}
.MobileMenuLinksItems{
    width: 100%;
    padding: 10px;
    padding-left: 15px;
    border-bottom: 1px solid #434343;
    font-size: 0.875rem; 
    line-height: 1rem; 
    font-weight: normal;
    color: rgb(148, 151, 156);
    transition: background-color 0.3s;
    background-color: rgba(67, 67, 67, 0.04);   
    text-decoration: none;
  }
  .MobileMenuLinksItems:hover,
  .MobileBeginButton a:hover
  {
    background-color: #434343 !important;
    color: rgb(148, 151, 156); 
  }
  .TextBlue
  {
    color:#89ff00;
  }
  .TextBlue:hover
  {
    color:#89ff00;
  }
.MobileLoginButton,
.MobileRegisterButton {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem; 
    line-height: 1rem; 
    font-weight: bold;
    background-color:#89ff00;
    border-radius: 8px; 
    padding: 16px 8px;
    height: 1.75rem;
    color:white;
    text-decoration: none;
  }
  .MobileLoginButton:hover,
.MobileRegisterButton:hover
{
    color:white;
}
  .MobileRegisterButton
  {
    background-color: transparent;
    border:1px solid #89ff00;
  }
  .MobileBeginButtonWrapper
  {
    width:100%;
    border-bottom: 1px solid #434343;
  }
  .MobileBeginButtonWrapper .MobileBeginButton
  {
    display: flex;
    border: none;
    font-family: 'POPG-Gotham' !important;
    color:rgb(148, 151, 156);
    background: none !important;
    align-items: center;
    padding: 10px;
    padding-left: 15px;
    font-size: 0.875rem;
  }
  .MobileBeginButtonWrapper .MobileBeginButton svg
  {
    margin-left: 10px;
    width: 12px;
  }

  .MobileBeginButton a
  {
    text-decoration: none;
  }
  .HamburgerIcon
  {
    display:none;
  }
  .HeightZero {
    height: 0;
    overflow: hidden;
    transition: height 0.3s ease;
    display: flex;
    flex-direction: column;
  }
  .HeightZero a
  {
    border-bottom: none;
    font-size: 0.875rem;
    padding-left:35px;
  }
  .HeightZero a:nth-child(1)
  {
    padding-top: 5px;
  }
  .MobileBeginButton svg
  {
    transition: transform 0.3s ease;
  }
  .rotate-90 {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }


@media (max-width: 1440px) {
    .Navbar {
        padding: 0rem 6rem;
    }
    .NavbarLeft {
        gap: 2.5rem;
    }
    .NavbarLinks {
        gap: 1.5rem;
        margin-right: 10px;
    }
}

@media (max-width: 1280px) {
    .Navbar {
        padding: 0rem 3rem;
        height:4.25rem;
    }
    .SiteLogo {
        height: 2.25rem;
    }
    .NavbarLinks
    {           
        display: none;
    }
    .LoginRegisterButtons
{
    display: none;
}
.HamburgerIcon
{
  display:block;
  cursor: pointer;
}
.PopG-Exchange-Rate span {
    font-size: 1rem;
}

}


/* MUSLIM CODE FOR RESPONSIVE  */

@media (max-width: 600px) {
    .SiteLogo {
        height: 2rem;
    }
    .PopG-Exchange-Rate span {
        font-size: 11PX;
    }
    .PopG-Exchange-Rate {
        padding: 5px 10px;
    }
    .Navbar {
        padding: 0rem 1rem;
    }
    .NavbarRight {
        gap: 1rem;
    }
}
