 
/* @font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk/SpaceGrotesk-Regular.otf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}


@font-face {
    font-family: 'Space Grotesk';
    src: url('../fonts/space-grotesk/SpaceGrotesk-Bold.otf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
} */


:root{
    --bg:#000;
    --nav:#303030;
    --pill:#2b2b2b;
    --txt:#cfcfcf;
    --txt-active:#fff;
  }
  h1, h2, h3, .heading {
  font-family: "Tektur", sans-serif;
  font-weight: 600;
}

p, li {
  font-family: "Tektur", sans-serif;
  font-weight: 400;
}
  html{
    overflow-x: hidden;
  }
  body{margin:0;background:var(--bg);font-family: "Tektur", sans-serif;;color:#fff;overflow-x: hidden;
      position: relative;}
   /* Subtle starfield background */
    

    @keyframes stars {
      from {background-position: 0 0;}
      to {background-position: -10000px 10000px;}
    }


 /* --- Base Layout --- */
.wrap {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  position: relative;
  flex-wrap: wrap;
  top: 0;
  transition: all 0.3s ease;
  z-index: 9999;
}
/* Sticky + Glassmorphism */
/* .wrap.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;

 
  background: rgba(23, 23, 25, 0.45);      
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  padding: 16px 16px;
  box-shadow: 0 4px 25px rgba(0,0,0,0.45);
} */

.logo img {
  height: 48px;
  width: auto;
}

/* --- Navigation --- */
.nav {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--nav);
  /* border-radius: 999px; */
  padding: 8px;
  gap: 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  transition: all 0.4s ease;
}
.nav::-webkit-scrollbar { display: none; }

.link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--txt);
  text-decoration: none;
  padding: 12px 22px;
  /* border-radius: 999px; */
  font-weight: 500;
  white-space: nowrap;
  z-index: 2;
  transition: color 0.3s ease;
}
.link:hover,
.link.active { color: var(--txt-active); }

.highlight {
  position: absolute;
  top: 0;
  left: 0;
  height: 0;
  width: 0;
  /* border-radius: 999px; */
  z-index: 1;
  pointer-events: none;
  background: #171719;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06), 0 6px 18px rgba(0,0,0,.45);
  transition: all 0.32s cubic-bezier(.22,.61,.36,1);
}

/* --- Buttons --- */
.wallet-btn, .cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 16px;
  border: 0;
  /* border-radius: 999px; */
  padding: 10px 20px;
  cursor: pointer;
  /* white-space: nowrap; */
  transition: all 0.3s ease;
}
.wallet-btn {
  margin-left: 40px;
  background: #171719;
  color: #fff;
}
.wallet-btn:hover { background: #94F721; color: #000; }

.cta {
  background: #94F721;
  color: #000;
  border: 1px solid;
}
.cta:hover {
  background: #000;
  color: #fff;
  border: 1px solid rgba(136, 136, 136, 0.63);
}

/* --- Responsive visibility --- */
.mobile-only { display: none; }
.desktop-only { display: flex; }

/* --- Hamburger --- */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 24px;
  cursor: pointer;
  z-index: 100;
}
.menu-toggle span {
  height: 3px;
  background: #fff;
  width: 100%;
  border-radius: 10px;
  transition: 0.4s;
}

/* --- Toggle Animation --- */
.menu-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* --- Responsive Breakpoints --- */

/* 1440 / 1366 / Mac */
@media (max-width: 1440px) {
  .wrap { width: 94%; gap: 14px; }
  .link { padding: 10px 18px; font-size: 15px; }
}

/* Tablet & below */
@media (max-width: 1170px) {
  .menu-toggle { display: flex;z-index: 9999999; }
  .desktop-only { display: none; }
  .mobile-only { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #111;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 100px 20px 20px;
    border-radius: 0;
    opacity: 0;
    visibility: hidden;
    transition: right 0.4s ease, opacity 0.4s ease;
    z-index: 99999;
  }

  .nav.open {
    right: 0;
    opacity: 1;
    visibility: visible;
    z-index: 1500; 
  }

  .link {
    width: 50%;
    justify-content: center;
    align-items: center;
    padding: 14px 0;
    font-size: 16px;
  }

  .wallet-btn, .cta {
    width: 100%;
    margin: 10px 0;
  }

  .wallet-btn { background: #171719; color: #fff; }
  .cta { background: #fff; color: #000; }

  .wrap {
    flex-direction: row;
    justify-content: space-between;
  }
}

/* Mobile tweaks */
@media (max-width: 540px) {
  .logo img { height: 42px; }
  .wallet-btn, .cta { font-size: 14px; padding: 9px 16px; }
}