:root{
    --bg: #0b0101;
    --white: #0b0808;
    --primary: ;
    --txt: #e8e3e3;
    --small-txt: #c6c3c3;
    --shadow: #e0dfdf;


    --header-padding: 1rem 0;
    --content-padding: 0.2rem 0rem 1rem 0rem;
    --border-color: #e4e4e7;
    --title: 1rem;
    --content: 0.95rem;
    --icon-size: 1.5rem;
    --primary-color: #c8dc71;
}


    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        text-decoration: none;
    }
    


html{
    width: 100vw;
    height: 100%;
    overflow-x: hidden;
}

@font-face {
    font-family: 'tbold'; 
    src: url('./fonts/thunder-bold.otf') format('opentype');
}

@font-face {
    font-family: 'tlight'; 
    src: url('./fonts/thunder-small.otf') format('opentype');
}

@font-face {
    font-family: 'bold'; 
    src: url('./fonts/bold.otf') format('opentype');
}

@font-face {
    font-family: 'light'; 
    src: url('./fonts/light.otf') format('opentype');
}

@font-face {
    font-family: 'normal'; 
    src: url('./fonts/normal.otf') format('opentype');
}

body{
    background-color: var(--bg);
    width: 100%;
}

header{
    width: 100%;
    height: 4.5rem;
    position: fixed;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 50px;
    box-shadow: 1px 1px 1px var(--shadow);
    background-color: var(--bg);
    z-index: 100000000;
}

  
  
  /* Menu toggle button */
  .menu-toggle {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    display: none;
  }
  
  /* Mobile nav styles */
  .mobile-nav {
    position: fixed;
    top: 0;
    left: -100%; /* Initially hidden offscreen */
    width: 250px;
    height: 100%;
    overflow-x: hidden;
    background-color: var(--white);
    color: var(--txt);
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    transition: left 0.3s ease; /* Smooth animation */
  }
  
  .mobile-nav.active {
    left: 0; /* Slide in */
  }
  
  .mobile-nav .close-menu {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--txt);
    align-self: flex-end;
    cursor: pointer;
  }
  
  .mobile-nav .link-section .links a {
    color: var(--txt);
    text-decoration: none;
    margin: 15px 0;
    display: block;
    font-size: 16px;
  }
  
  .mobile-nav .link-section .links a:hover {
    color: var(--primary, #FE4441);
  }
  
  .dropdown-menu {
    display: none; /* Hidden by default */
    padding: 10px;
    background: black;
    border: 1px solid red;
    border-radius: 5px;
    margin-top: 5px;
  }
  
  .dropdown:hover .dropdown-menu {
    display: block; /* Show dropdown on hover */
  }

  .buttons{
    display: flex;
    align-items: center;
    justify-content: space-between;
    display: none;
  }


  .buy-mobile{
    display: none;
    background-image: linear-gradient(45deg, #FFBC3F, #D4A017);
    border: none;
    color: var(--white);
    font-family: tbold;
    padding: 0.6rem 1.3rem;
    font-size: 1.3rem;
    border-radius: 5rem;
    margin-right: 0.5rem;
  }

  
  /* Responsive styles */
  @media (max-width: 868px) {
    .menu-toggle {
      display: block; /* Show menu toggle */
    }

    .buttons{
        display: flex;
    }

    .buy-mobile{
        display: flex;
      }
    

    .desktopnav{
        display: none !important;
    }
  
    .link-section {
      display: none; /* Hide desktop links */
    }

    header{
        padding: 0 25px;
    }
  }
  

.logo img{
    width: 3rem;
}

.link-section{
    display: flex;
    align-items: center;
    justify-content: space-between !important;
    height: 100%;
}

.links a{
    font-family: tbold;
    font-size: 1.35rem;
    color: var(--txt);
    padding: 0 2rem;
}

/* Dropdown container */
.dropdown {
    position: relative; /* Required for positioning the dropdown menu */
    display: inline-block; /* Inline container for dropdown */
  }
  
  /* The link to toggle the dropdown */
  .dropdown-toggle {
    text-decoration: none;
    color: var(--txt, #282828); /* Text color */
    font-weight: bold;
    padding: 10px 15px;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  
  /* Hover effect for the toggle */
  .dropdown-toggle:hover {
    color: var(--primary, #FE4441);
    
  }
  
  /* Dropdown menu styling */
  .dropdown-menu {
    display: none; /* Hidden by default */
    position: absolute;
    top: 100%; /* Position it below the toggle */
    left: 0;
    background-color: var(--txt); /* Background color */
    color: white; /* Text color */
    border: 2px solid #fff; /* Border styling */
    border-radius: 8px; /* Modern rounded corners */
    padding: 10px 0;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Add a subtle shadow */
    z-index: 1000;
    min-width: 150px; /* Ensure sufficient width */
    text-align: left;
  }
  
  /* Links inside the dropdown */
  .dropdown-menu a {
    text-decoration: none;
    color: white;
    padding: 10px 15px;
    display: block; /* Full-width clickable links */
    transition: all 0.3s ease;
    font-size: 14px;
  }
  
  /* Hover effect for dropdown links */
  .dropdown-menu a:hover {
    background-color: var(--small-txt); /* Highlight on hover */
    color: var(--shadow); /* Text color on hover */
    border-radius: 5px;
  }
  
  /* Show the dropdown on hover */
  .dropdown:hover .dropdown-menu {
    display: block;
  }
  

.link-section button{
    border-radius: 25% 25% 25% 25% / 0% 0% 25% 25%;
    width: 6.5rem;
    height: 4.5rem;
    background-image: linear-gradient(45deg, #FFBC3F, #D4A017);
    border: none;
    font-family: tbold;
    color: var(--white);
    font-size: 1.45rem;
}

.socialmobile{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 200px;
}

.socialmobile a{
    padding: 0 !important;
}

.fill{
    fill:  #D4A017;
}

.mobile-links{
    font-size: 2rem !important;
}


 /* =========================HERO SECTION=========================  */

 .hero{
    margin-top: 5rem;
    width: 100%;
    height: 110vh;
    display: flex;
    align-items: end;
    justify-content: center;
    padding: 3%;
    padding-bottom: 1%;
    position: relative;
 }

 .hero-img{
    width: 50%;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0 !important;
 }


 .hero div{
    width: 100%;
 }


 .hero div h1{
    font-family: tbold;
    color: var(--txt);
    font-size: 20rem;
    text-align: left;
 }

@media(max-width: 700px){
.hero div h1{
    font-family: tbold;
    color: var(--txt);
    font-size: 30% !important;
    text-align: center;
}
}

 .hero-txt{
    width: 60% !important;
    padding-left: 15%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: light;
    margin-left: 1rem;
    color: #d1cccc;
 }

 .copycon{
    width: 34rem !important;
    height: 3rem;
    position: relative;
 }

 .mobile-copy{
    display: none;
 }

 .ca-txt{
    position: absolute;
    left: 0;
    top: 0;
    background-color: var(--white);
    border: 1px solid var(--txt);
    height: 2.5rem;
    border-radius: 6rem;
    width: 95%!important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: light;
    font-size: 14px;
    min-width: 7rem;
    color: #dbd7d7;
 }

 .ca-btn{
    position: absolute;
    top: 4px;
    right: 0;
    background-image: linear-gradient(45deg, #FFBC3F, #D4A017);
    width: 2rem !important;
    height: 2rem !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--txt);
    cursor: pointer;
 }

 @media (max-width: 1060px){
    .hero-txt{
        width: 80% !important;
    }

    .hero{
        height: 100vh;
    }
 }

 @media (max-width: 760px){
    .hero{
        align-items: center;
        height: 110vh;
        margin-top: 8rem;
    }

    .hero-txt{
        justify-content: center;
    }

    .copycon{
        display: none;
    }

    .mobile-copy{
        position: absolute;
        display: flex !important;
        bottom: 3% ;
        left: 3% !important;
        width: 20rem !important;
        z-index: 8;
     }

    .hero div h1{
        font-size: 15rem;
        text-align: center;
        margin-bottom: 25rem;
    }

    .hero-img{
    width: 96%;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    }

    .hero-txt p{
        text-align: center;
    }
 }

 @media (max-width: 460px){
    .hero div h1{
        font-size: 10rem;
    }
 }

 .mobile-copy{
    display: none;
 }

 .popup {
    display: none;
    position: fixed;
    bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    left: 50%;
    width: 5rem !important;
    transform: translateX(-50%);
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    z-index: 10;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    animation: fadeInOut 3s ease forwards;
    font-family: tbold;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    10%, 90% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
}

 /* =========================TOKENOMICS SECTION=========================  */

 .tokenomics{
    background-color: var(--white);
    height: 120vh;
    padding-top: 5%;
    position: relative;
 }

 @media (max-width: 460px){
    .tokenomics  {
        height: 90vh;
    }
 }

 .tok-bg{
    width: 100%;
    height: 80%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
 }

 .tok1{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    
 }

 .tok1 h1{
    font-family: tbold;
    font-size: 20vw;
    color: var(--bg);
    color:#d1cccc;
 }

 .tok2{
    position: relative;
    width: 20rem;
    height: 10rem;
    margin-left: 18%;
    z-index: 3;
 }

 .tok2 h2{
   color: var(--txt);
   font-family: tbold;
   font-size: 7rem;
 }

 .tok2 h3{
    position: absolute;
    right: 10%;
    top:50%;
    transform: rotate(-20deg); 
    font-family: tlight;
    font-size: 3rem;
    color: #D4A017;
 }

 .tok3 {
    position: relative;
    width: 35rem;
    height: 10rem;
    margin-left: 18%;
    z-index: 3;

 }

 .tok3 div{
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 0.3rem;
 }

 .round{
    color: var(--txt);
    font-family: tlight;
    padding: 0.4rem 1rem;
    border-radius: 7rem;
    border: 1px solid var(--txt);
    margin-right: 0.5rem;
 }

 .tok-ab{
    position: absolute;
    right: 0%;
    bottom: 0;
    width: 50%;
    z-index: 3;
 }

 
.inslider {
    width: 100%;
    overflow: hidden; /* Hide overflowing content */
    color: #fff;
    display: flex;
    align-items: center;
    height: 50px; 
    display: none;
  }
  
  .inslide-track {
    display: flex;
    width: calc(100px * 8); /* 8 inslides * width of each inslide */
    animation: scroll 10s linear infinite;
  }
  
  .inslide {
    width: 100px;
    text-align: center;
    font-size: 34px;
    line-height: 50px;
    color: var(--bg);
    font-weight: bold;
    font-family: tlight;
    margin-right: 3.5rem;
  }
  
  @keyframes scroll {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }

@media (max-width: 500px){

    .tokenomics{
        height: 150vh;
        padding-top: 6%;
    }

    .inslider{
      display: flex;
      margin-bottom: 1.5rem;
    }

    .tok1 h1{
        display: none;
    }
    
    .tok2 h2{
        text-align: center;
        font-size: 5rem;
    }

    .tok2 h3{
        font-size: 2rem;
        top: 29%;
        right: 15%;
    }

    .tok3, .tok2{
        margin-left: 0;
        width: 100%;
    }
    .tok3 div{
        justify-content: center;
        align-items: center;
    }
   

    .tok-ab{
        bottom: 0%;
        left: 2.5%;
        width: 95%;
    }



}



 /* =========================HTB SECTION=========================  */

 .htu{
  padding: 5% 3%;
  position: relative;
 }

 .htu1 h1{
   text-align: start;
   font-size: 23vw;
   font-family: tbold;
   color: #d1cccc;
 }

 .htu2{
    display: flex;
    position: relative;
    z-index: 2;
 }

 .card{
    background-color: #1a1a1a;
    width: 17rem;
    height: 11rem;
    border-radius: 1.2rem;
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: space-between;
    padding: 18px;
    margin: 0.7%;
 }

 .card div{
    background-image: linear-gradient(45deg, #FFBC3F, #D4A017);
    color: var(--white);
    font-family: tlight;
    width: 3rem;
    height: 2rem;
    border-radius: 7rem;
    display: flex;
    align-items: center;
    justify-content: center;
 }

 .card h3{
    font-family: tbold;
    font-size: 2.3rem;
    color: #d1cccc !important;
 }


 .htu3{
  display: flex;
  align-items: center;
  justify-content: end;
  padding-right: 4%;
  position: relative;
  z-index: 2;
 }


 .htu-img{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: auto;
  z-index: 0;
 }

 .slider{
  display: none;
 }


 @media (max-width: 790px) {
  .htu{
    padding: 3% 1.5%;
  }
  .slider {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
    display: flex;
  }
  
  .slider-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
  }
  
  .card {
    max-width: 50%;
    height: 18rem;
    text-align: start;
    padding: 20px;
    box-sizing: border-box;
    background: #1c1a1a;
    border: 1px solid #ddd;
    border-radius: 1.5rem;
  }
  
  h3 {
    margin-top: 10px;
  }
  
  .prev-btn, .next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #333;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
  }
  
  .prev-btn {
    left: 10px;
  }
  
  .next-btn {
    right: 10px;
  }

  .htu2, .htu3{
    display: none;
  }

  .htu-img{
    width: 20%;
    display: none;
  }
 }



 /* ====================FAQ====================== */

.faqs{
  padding: 10% 3%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100% !important;
}

.faqs h1{
  width: 50%;
  font-size: 20vw;
  font-family: tbold;
  color: #d1cccc;
}
 .accordion-container {
  max-width: 600px;
  border-radius: 1rem;
  border: 1px solid #2f2f31;
  padding: 2rem;
}

details {
  font-size: var(--title);
  margin: 0 auto;
  width: 100%;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease-in-out;

  &:hover {
    opacity: 1;
  }
}

summary {
  user-select: none;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  padding: var(--header-padding);

  &:hover {
    text-decoration: underline;

    & .title {
      opacity: 1;
    }

    & .accordion-icon {
      opacity: 1;
    }
  }
}

.accordion-icon{
  color: #fff !important;
}

.accordion-title {
  color: #858587;
  width: 90%;
  font-weight: 500;
  transition: all 250ms ease-in-out;
  font-family: bold;
}

.accordion-icon {
  opacity: 0.5;
  pointer-events: none;
  position: absolute;
  right: 1rem;
  transition: all 150ms ease-out;

  svg {
    width: var(--icon-size);
    height: var(--icon-size);
    transition: transform 0.3s ease-in-out;
  }
}

.accordion-content {
  color: #e1e2e4;
  padding: var(--content-padding);
  font-size: var(--content);
  font-weight: 400;
  line-height: 1.65;
  font-family: normal;
}

/** Remove Marker */
summary::-webkit-details-marker {
  display: none;
}

/** Rotate Icon */
details[open] .accordion-icon svg {
  transform: rotate(180deg);
}

@media (max-width: 700px) {
  .faqs{
    flex-direction: column;
    justify-content: center;
  }

  .faqs h1{
    width: 100%;
    text-align: center;
  }

  .accordion-container {
    max-width: 400px;

  }
}



/* 
================FOOTER================== */

footer{
  background-image: linear-gradient(45deg, #FFBC3F, #D4A017);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2% 3%;
}

footer p{
  color: #282828;
  font-family: light;
  font-size: 14px;
  max-width: 65%;
}

.footericons{
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  width: 20% !important;
}

@media (max-width: 700px){
  footer{
    flex-direction: column;
    padding: 3% 3%;
  }

  footer p{
    text-align: center;
    max-width: 90%;
    margin-bottom: 1rem;
  }
}
