body,
html {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background: #121212;
  color: #ffffff;
  position: relative; /* Needed for absolute positioning of lines */
  min-height: 100vh; /* Ensure at least full viewport height */
  background: #121212
    url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200">%3Crect width="200" height="200" fill="%23000" /%3E%3Ccircle fill="%23fff" cx="150" cy="38" r="1" fill-opacity="0.22" /%3E%3Ccircle fill="%23fff" cx="103" cy="129" r="1" fill-opacity="0.18" /%3E%3Ccircle fill="%23fff" cx="67" cy="91" r="1" fill-opacity="0.20" /%3E%3Ccircle fill="%23fff" cx="123" cy="156" r="1" fill-opacity="0.15" /%3E%3Ccircle fill="%23fff" cx="41" cy="68" r="1" fill-opacity="0.10" /%3E%3Ccircle fill="%23fff" cx="85" cy="76" r="1" fill-opacity="0.05" /%3E%3C/svg>')
    repeat;
}

body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: radial-gradient(
      at top left,
      rgba(173, 216, 230, 0.3) 0%,
      transparent 30%
    ),
    radial-gradient(at top right, rgba(173, 216, 230, 0.3) 0%, transparent 30%);
  pointer-events: none; /* Ensures clicks go through the overlay */
  z-index: 0;
}

.container {
  width: 80%; /* Adjust the width as needed */
  margin: 0 auto; /* Center the container */
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.5rem;
  color: #FFFFFF;
  position: relative;
  padding-left: 1rem; /* Add padding to position the logo correctly */
  margin-bottom: 1rem;
}

.logo-img {
  height: 3.5rem; /* Adjust the size as needed */
  margin-left: -0.7rem; /* Add some space between the text and the image */
  margin-top: 0.3rem;
  filter: url(#lightBlueGlow);
}

.logo::after {
  content: "";
  position: absolute;
  bottom: 15px;
  left: 1.1rem; /* Set to 0 to align with the start of the logo text */
  width: calc(
    100% - 4.1rem
  ); /* Subtract the same amount as the padding-left of .logo */
  height: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 0 10px #FFFFFF;
}

.navbar {
  display: flex;
  justify-content: space-between;
  padding: 1rem;
  align-items: center;
}

.hamburger {
  display: none; /* Hidden by default, will be displayed in mobile view */
  cursor: pointer;
  background: none;
  border: none;
  font-size: 2rem;
  color: #fff;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Style for the mobile navigation drawer */
.nav-drawer {
  display: none; /* Hidden by default */
  position: fixed;
  top: -100%; /* Start off-screen */
  right: 0;
  left: 0;
  background-color: #333;
  padding-top: 3.5rem; /* Make room for the navbar */
  transition: top 0.3s ease-in-out;
}

.nav-drawer .nav-link,
.nav-drawer .nav-button {
  display: block;
  padding: 1rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

.backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
  backdrop-filter: blur(5px);
  z-index: 5; /* Below the drawer but above other content */
}

.nav-drawer {
  background-color: #444; /* Adjust the color as needed */
  z-index: 10; /* Above the backdrop */
  /* Rest of the styles remain the same */
}

/* Display the hamburger menu and the mobile navigation drawer in mobile view */
@media (max-width: 768px) {
  .nav-drawer.active {
    display: block;
    top: 0; /* Ensure the drawer is shown when active */
  }

  .backdrop.active {
    display: block; /* Show the backdrop when the drawer is active */
  }
  .nav-links {
    display: none; /* Hide the desktop nav links */
  }

  .hamburger {
    display: block; /* Show the hamburger menu */
    margin-left: 2em;
  }

  .nav-drawer {
    display: block; /* Ensure the drawer is ready to be shown */
    /* Ensure that items within nav-drawer are aligned */
    text-align: center;
  }

  .nav-drawer .nav-button {
    width: 60%; /* Smaller width */
    margin: 1rem auto; /* Center the button */
    /* Remove if using text-align: center; */
    display: inline-block; /* This will allow the margin: auto to work */
  }

  /* Additional styles for nav-link within the drawer for consistency */
  .nav-drawer .nav-link {
    margin: 1rem auto; /* Consistent margin with the button */
    display: block; /* Stack the links */
  }
}

.nav-link,
.nav-button {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin: 0 1rem;
  margin-bottom: 1rem;
  transition: color 0.3s ease-out;
}

.nav-button {
  padding: 0.5rem 1rem;
  border: 1px solid #FFFFFF;
  border-radius: 4px;
  margin-left: 15px; /* Adjust the margin to align the button as desired */
  white-space: nowrap; /* Ensure the text doesn't wrap */
  display: flex; /* Aligns the button text vertically */
  align-items: center; /* Aligns the button text vertically */
}
.nav-button:hover {
  color: #ffffff;
  background-color: rgba(48, 213, 200, 0.1);
  border-color: #ffffff;
}

.vertical-line {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  width: 1px;
  top: 0;
  bottom: 0;
  z-index: 10;
}

.vertical-line.left {
  left: 10%; /* Or adjust as needed */
}

.vertical-line.right {
  right: 10%; /* Or adjust as needed */
}

.horizontal-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  width: 100%;
  position: absolute;
}

.main-content h1 {
  /* Assuming the h1 is the least transparent (most visible) */
  color: rgba(255, 255, 255, 0.9); /* Adjust alpha for transparency */
  font-size: 2.5rem;
}

.main-content p {
  /* Assuming the last paragraph is the most transparent */
  color: rgba(255, 255, 255, 0.5); /* Adjust alpha for transparency */
}

/* Styles for the content wrapper */
.content-wrapper {
  display: flex;
  justify-content: center; /* Center the content */
  max-width: 1400px;
  margin: auto;
  padding: 0 2rem 2rem 2rem; /* Increase padding for larger overall size */
  position: relative;
}

/* Styles for each section within the wrapper */
.main-content,
.additional-section {
  flex: 1;
  padding: 1rem;
  box-sizing: border-box;
}

/* Pseudo-element for divider */
.content-wrapper::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px; /* Thickness of the divider */
  background-color: rgba(255, 255, 255, 0.2);
  top: 0px;
  bottom: 0;
}

.mobile-divider {
  display: none; /* Hidden by default */
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  width: 100%;
  margin: 0rem 0; /* Spacing above and below the divider */
}

/* Adjust for mobile view */
@media (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    padding: 0rem;
  }

  .mobile-divider {
    display: block; /* Show the divider */
  }

  .main-content,
  .additional-section {
    width: 100%;
  }

  .content-wrapper::after {
    content: none; /* Remove the divider */
  }
}

/* Adjust horizontal lines positioning */
.navbar + .horizontal-line {
  top: 80px; /* Adjust as needed */
}

.main-content + .horizontal-line {
  position: absolute;
  left: 0;
  right: 0;
  top: 20rem; /* Adjust this value based on your content */
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 5; /* Ensures it is above the background but below the content */
}

@media screen and (max-width: 768px) {
  .main-content + .horizontal-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 25.5rem; /* Adjust this value based on your content */
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 5; /* Ensures it is above the background but below the content */
  }
}

@media screen and (max-width: 768px) {
  .container {
    width: 95%;
  }

  .vertical-line {
    display: none;
  }
}

/* For continuous light animation on lines */
@keyframes moveLight {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* benefits section */
.benefits-section-title {
  text-align: center;
  margin-top: 3rem; /* Adjust the top margin as needed */
  margin-bottom: -2rem; /* Space before the benefits section starts */
}
.benefits-section {
  display: flex;
  justify-content: space-around;
  margin: 2rem auto 0rem auto;
  max-width: 1200px;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  .benefits-section {
    display: flex;
    justify-content: space-around;
    margin: 1rem auto 0rem auto;
    max-width: 1200px;
    padding: 0 1rem;
  }
  .emphasize-text {
    font-variation-settings: "wght" 400;
  }
}

.emphasize-text {
  font-variation-settings: "wght" 500;
}

.benefit-content p {
  font-size: 0.8rem;
}

.benefit-content strong {
  font-weight: bolder;
}

.benefit-card {
  background: linear-gradient(145deg, #1e1e1e, #232323);
  border: 1px solid #333; /* Grey border */
  border-radius: 10px;
  padding: 2rem;
  width: 45%; /* Adjust width for spacing */
  margin: 1rem; /* Spacing between cards */
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* Aligns content to the left */
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
  /* The rest of your styles */
}
.benefit-icon-glow-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: absolute;
  top: 0px; /* Adjust as needed to position above the card */
}

.benefit-glow-line {
  width: 5rem; /* Adjust width as needed */
  height: 4px;
  background-color: #FFFFFF;
  box-shadow: 0 0 8px #FFFFFF;
  border-radius: 2px;
  position: absolute;
  top: 0; /* Aligns with the top of the icon */
  z-index: 1;
}

.benefit-icon {
  width: 50px; /* Adjust the size as needed */
  height: 50px;
  filter: url(#lightBlueGlow); /* Your SVG filter for the blue glow */
  z-index: 2; /* Ensures the icon is above the glowing line */
}

.benefit-card h3 {
  margin-top: 1rem;
}
/* Make sure that the icon is not overlapping the text */
.benefit-card h3,
.benefit-card p {
  z-index: 2; /* Above the glowing line */
  position: relative;
}

/* Responsive styles */
@media (max-width: 768px) {
  .benefits-section {
    flex-direction: column;
  }

  .benefit-card {
    width: 80%; /* Full width on mobile */
    margin: 2rem 1rem 2rem auto;
  }

  .benefit-icon {
    width: 40px; /* Smaller icon on mobile */
    height: 40px; /* Smaller icon on mobile */
    margin-right: 0.5rem; /* Less space on mobile */
  }

  .benefit-glow-line {
    width: 80px; /* Shorter line on mobile */
  }
}

/* additional section */

.additional-section h2 {
  font-size: 2.25rem; /* Adjust the size as needed */
  margin-bottom: 1rem; /* Space between the h2 and p */
}

.additional-section p {
  color: rgba(255, 255, 255, 0.5); /* Adjust alpha for transparency */
  margin-top: 2rem; /* Add space below if needed */
  margin-right: 2rem;
}

.scrolling-checkmarks {
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  padding: 20px 0;
  background-color: #000;
  margin: 3rem auto 3rem auto;
}

.scrolling-checkmarks::before,
.scrolling-checkmarks::after {
  content: "";
  position: absolute;
  top: 0;
  height: 100%;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.scrolling-checkmarks::before {
  left: 0;
  background: linear-gradient(to right, #000 0%, transparent 100%);
}

.scrolling-checkmarks::after {
  right: 0;
  background: linear-gradient(to left, #000 0%, transparent 100%);
}

.checkmarks-container {
  display: inline-block;
  animation: scroll-text 100s linear infinite;
}

.checkmarks-container span {
  color: #ffffff;
  padding: 0 2rem;
}

.p-with-check {
  display: flex;
  align-items: flex-start; /* Aligns items to the start of the container */

  text-align: left;
}

.benefit-content .p-with-check::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 12px;
  border: solid #FFFFFF; /* Bullet point color */
  border-width: 0 2px 2px 0;
  margin-right: 8px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.checkmarks-container span::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 14px;
  border: solid #FFFFFF; /* Bullet point color */
  border-width: 0 2px 2px 0;
  margin-right: 8px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

fas.fa-check {
  color: #FFFFFF !important;
}

/* Make sure this style is consistent on all screen sizes */
@media (max-width: 768px) {
  .checkmarks-container i.checkmark {
    color: #FFFFFF !important; /* Bullet point color */
  }
}

@keyframes scroll-text {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}

.tokenomics-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
}

.tokenomics-text {
  max-width: 50%;
}

.tokenomics-text h2 {
  font-size: 2rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.tokenomics-text p {
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.7);
}

.token-logo-container {
  width: 250px;
  height: 250px;
  background-color: #1e1e1e;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.token-logo-container img {
  max-width: 80%;
  width: 15rem;
  height: auto;
}

.tokenomics-button {
  background: transparent;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  padding: 10px 20px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tokenomics-button:hover {
  background-color: #FFFFFF;
  color: #121212;
}

.tokenomics-content-container {
  border: 1px solid #333; /* Grey border */
  border-radius: 10px;
  overflow: hidden; /* This ensures that children do not overlap the border-radius */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  max-width: 1200px;
  width: 60%;
  margin: 0 auto;
  padding: 6rem;
  background: linear-gradient(145deg, #1e1e1e, #232323);
}

@media (max-width: 768px) {
  .tokenomics-section {
    flex-direction: column;
    text-align: center;
  }

  .tokenomics-text,
  .token-logo-container {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .token-logo-container {
    width: 15rem;
    height: 15rem;
  }
  .tokenomics-content-container {
    padding: 4rem;
    flex-direction: column;
  }
}

.faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem;
  color: #fff;
  text-align: center;
}

.faq-intro {
  margin-bottom: 2rem;
  color: #ccc;
}

.faq-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  flex-basis: 100%; /* One item per row on mobile */
  background: linear-gradient(145deg, #1e1e1e, #232323);
  border: 1px solid #333; /* Grey border */
  padding: 20px;
  box-sizing: border-box;
  margin-bottom: 20px; /* Adjust as needed */
  border-radius: 8px;
  width: 50%;
  margin: 0 auto;
}

.faq-question {
  background: none;
  border: none;
  color: #fff;
  text-align: left;
  width: 100%;
  cursor: pointer;
  outline: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

@media (max-width: 1028px) {
  .faq-item {
    width: 80%;
  }
}

/* Adjustments for mobile view */
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }

  .faq-item {
    width: 80%;
  }
}

.roadmap-section {
  margin-top: 2rem;
}

.roadmap-list {
  list-style-type: none; /* Removes default bullet points */
  padding: 0; /* Removes default padding */
  color: rgba(255, 255, 255, 0.5); /* Adjust alpha for transparency */
}

.roadmap-list li {
  position: relative; /* Needed for absolute positioning of custom bullet */
  margin-bottom: 10px; /* Adjust as necessary for spacing between bullet points */
  padding-left: 20px; /* Provides space for custom bullet point */
  text-align: left; /* Ensures text alignment */
  margin-top: 25px;
}

.roadmap-list li::before {
  content: "";
  position: absolute;
  left: 0; /* Aligns custom bullet to the left */
  width: 8px;
  height: 14px;
  border: solid #FFFFFF; /* Bullet point color */
  border-width: 0 2px 2px 0;
  margin-right: 8px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}

.faq-answer p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5); /* Adjust alpha for transparency */
}

.video-section-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.video-container-wide {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* Above the backdrop */
  max-width: 50%; /* Max width to ensure it doesn't take up the entire screen width */
  max-height: auto; /* Max height to ensure it doesn't take up the entire screen height */
  box-sizing: border-box; /* Ensures padding and borders are included in the width/height */
}

.video-container {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10; /* Above the backdrop */
  max-width: 25%; /* Max width to ensure it doesn't take up the entire screen width */
  max-height: auto; /* Max height to ensure it doesn't take up the entire screen height */
  box-sizing: border-box; /* Ensures padding and borders are included in the width/height */
}

@media (max-width: 768px) {
  .video-container-wide {
    max-width: 100%;
  }
  .video-container {
    max-width: 50%;
  }
}

video {
  max-width: 100%;
  max-height: auto;
  display: block; /* Remove any extra space below the video */
}
.close-btn {
  position: absolute;
  top: -10px; /* Adjust as needed */
  right: -10px; /* Adjust as needed */
  border: none;
  background: #fff; /* Background of the circle */
  color: #000; /* Color of the 'x' */
  border-radius: 50%;
  cursor: pointer;
  width: 25px; /* Adjust the size of the circle as needed */
  height: 25px; /* Adjust the size of the circle as needed */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px; /* Adjust the size of the 'x' as needed */
}

#openVideoBtn {
  margin-top: 50px; /* Provides space between the button and whatever is above it */
  background-color: transparent;
}

#openDemoBtn {
  background-color: transparent;
  padding: 0.5rem 1.22rem;
}
