/* Base styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            scroll-behavior: smooth;
        }
        @font-face {
  font-family: 'MainFont';  /* Choose a name for your font */
  src: url('assets/tw-cen-mt-condensed-extrabold.ttf') format('truetype'); /* Path to your .ttf file */
  font-weight: normal;          /* Adjust if needed (e.g., 400, 700) */
  font-style: normal;           /* Adjust if italic (font-style: italic) */
}

        :root {
            --primary-color: #060D26;
            --secondary-color: #ffffff;
            --text-color: #ffffff;
            --bg-color: #0a0f24;
            --nav-bg: #060D26;
            --cream: #ede6e1;
            --light-gray: #f0f0f0;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.3), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        body {
            color: var(--text-color);
            background-color: var(--nav-bg);
            min-height: 100vh;
            transition: var(--transition);
            font-family: 'MainFont', sans-serif; /* Use the custom font */
        }

        /* Navbar styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 2rem;
            background-color: var(--nav-bg);
            /* box-shadow: var(--shadow); */
            width: 100%;
            position: sticky;
            top: 0;
            z-index: 1000;
            transition: var(--transition);
        }

        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--secondary-color);
            text-decoration: none;
            transition: var(--transition);
        }

        .logo:hover {
            opacity: 0.8;
            transform: scale(1.02);
        }

        .nav-links {
            display: flex;
            gap: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--secondary-color);
            font-weight: 500;
            transition: var(--transition);
            position: relative;
            padding: 0.5rem 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--secondary-color);
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--secondary-color);
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a img{
          filter: invert(1);
          width: 15px;
        }
        .nav-links a img {
          filter: invert(1);
        }
        .nav-links a img.dis {
          width: 20px;

          display: none;
        }

        

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--text-color);
            transition: var(--transition);
            padding: 0.5rem;
        }

        .mobile-menu-btn:hover {
            color: var(--secondary-color);
            transform: rotate(180deg);
        }

        .mobile-menu {
            display: flex;
            flex-direction: column;
            gap: 0;
            padding: 0 2rem;
            background-color: var(--nav-bg);
            box-shadow: var(--shadow);
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.6s cubic-bezier(0.77, 0, 0.175, 1);
        }

        .mobile-menu.active {
            max-height: 500px;
            padding: 1rem 2rem;
        }

        .mobile-menu a {
            text-decoration: none;
            color: var(--text-color);
            font-weight: 500;
            padding: 1rem 0;
            transition: var(--transition);
            opacity: 0;
            transform: translateX(-20px);
            border-bottom: 1px solid rgba(226, 226, 226, 0.1);
            transition: opacity 0.5s ease, transform 0.5s ease, padding 0.3s ease;
        }

        .mobile-menu.active a {
            opacity: 1;
            transform: translateX(0);
        }

        .mobile-menu a:hover {
            color: var(--secondary-color);
            padding-left: 1rem;
            background-color: rgba(255, 255, 255, 0.05);
        }

        .mobile-menu a:last-child {
            border-bottom: none;
        }

        /* Staggered animation delays */
        .mobile-menu a:nth-child(1) { transition-delay: 0.1s; }
        .mobile-menu a:nth-child(2) { transition-delay: 0.2s; }
        .mobile-menu a:nth-child(3) { transition-delay: 0.3s; }
        .mobile-menu a:nth-child(4) { transition-delay: 0.4s; }
        .mobile-menu a:nth-child(5) { transition-delay: 0.5s; }

        /* Responsive styles 
        @media (max-width: 768px) {
            .nav-links {
                display: none;
            }

            .mobile-menu-btn {
                display: block;
            }
            .hero{
                padding-top: 0px;
                padding-bottom: 50px;
            }
            .hero h1 {
                font-size: 4rem;
            }
        }

        */

        /* Content to demonstrate scrolling 
        .content {
            padding: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            margin-bottom: 1rem;
            color: var(--secondary-color);
        }

        .content p {
            margin-bottom: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
        }*/


    .hero {
      height: 100vh;
      width: 100%;
      background-image: url('assets/bg nozra1.png');
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(6, 13, 38, 0.75);
      z-index: 1;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      height: 100%;
      text-align: center;
      padding: 0 1rem;
    }

    .hero h1 {
      max-width: 90%;
      font-size: 10rem;
      margin-bottom: 1rem;
            font-family: 'MainFont', sans-serif; /* Use the custom font */

    }

    .hero p {
      font-size: 1.2rem;
      max-width: 700px;
      margin-bottom: 2rem;
      color: rgba(192, 192, 192, 0.8);
    }

    #buyButton {
      padding: 0.8rem 2rem;
      font-size: 1rem;
      background-color: #4C3D8E;
      color: white;
      border: none;
      border-radius: 4px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.3s ease;

      display: none;
    }

    #buyButton:hover {
      background-color: rgba(0, 163, 238, 0.8);
      transform: scale(1.05);
    }

    .scroll-arrow {
      margin-top: 40px;
      margin-bottom: 10%;
      font-size: 2rem;
      background: transparent;
      border: 2px solid white;
      color: white;
      width: 50px;
      height: 50px;
      border-radius: 50%;
      animation: bounce 2s infinite;
      cursor: pointer;
    }

    @keyframes bounce {
      0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
      }
      40% {
        transform: translateY(-10px);
      }
      60% {
        transform: translateY(-5px);
      }
    }

    .image_line {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 1;

      display: none;
    }

    .img_left, .img_right {
      width: 50%;
      height: 100%;
      display: flex;
      justify-content: center;
      align-items: center;
      margin-top: 150px;
    }
    .img_right{
      padding-top: 200px;
    }

    .img_left img, .img_right img {
      width: 60%;
      height: auto;
    }

    @media (max-width: 768px) {
      .hero h1 {
        font-size: 5rem;
      }

      .hero p {
        font-size: 0.8rem;
      }

      .scroll-arrow {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
        margin-top: 10px;
      }
      .img_left, .img_right {
        width: 100%;
        height: auto;
        margin-top: 200px;
        margin-bottom: 0px;
      }
    .img_left img, .img_right img {
      width: 80%;
      height: auto;
    }
    }
































/* explore section */
.explore {
  padding: 4rem 2rem;
  background-color: var(--cream);
  color: var(--text-color);
  align-items: center;
  display: flex;
  flex-direction: column;
  padding-bottom: 100px;
  padding-top: 100px;
  
}
.explore h1 {
  font-size: 4rem;
  margin-bottom: 0rem;
  font-family: 'mainFont', sans-serif; /* Use the custom font */
  color: var(--bg-color);
}
.explore .ex_column {
  display: flex;
  flex-wrap: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  width: 100%;
  gap: 5rem;
  background-color: #cecdcb;
  padding: 100px 0px 100px 0px;
  border-radius: 25px;
  transition: var(--transition);

}
.explore .ex_column:hover {
  background-color: var(--nav-bg);
  color: var(--secondary-color);
}
.explore .ex_column:hover h1 {
  color: var(--secondary-color);
}
.explore .ex_column:hover p {
  color: #b1b1b0;
}


.explore .ex_column img {
  width: 100%;
  max-width: 30%;
  border-radius: 10px;
  transition: transform 0.3s ease;
}
.explore .ex_column img:hover {
  transform: scale(1.05);
}
.explore .ex_column p {
  font-size: 1.5rem;
  color: rgba(43, 46, 80, 0.8);
  max-width: 900%;
  text-align: left;
  margin-top: 50px;
}

.ex_column .leftside_exp {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 50%;

}

@media (max-width: 768px) {
    .explore h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    .explore .ex_column {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }

    .explore .ex_column img {
        max-width: 80%;
    }

    .explore .ex_column p {
        max-width: 90%;
        font-size: 1rem;
    }
    .ex_column .leftside_exp {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        max-width: 100%;
    }
    .ex_column .leftside_exp p {
        margin-top: 10px;
    }
}



.nft-section {
  padding: 2rem;
  background-color: var(--nav-bg);
  overflow: hidden;
  padding-top: 100px;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 2rem;
  color: white;
  font-weight: 600;
  font-family: 'mainFont', sans-serif;
}
.section-title span {
  color: #aaa;
    font-weight: 600;
  font-family: 'mainFont', sans-serif;
}

/* Wrapper hides overflow */
.nft-scroll-wrapper {
  overflow: hidden;
  position: relative;
}

/* Container scrolls horizontally */
.nft-scroll-container {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-left 35s linear infinite;
}

.nft-scroll-container:hover {
  animation-play-state: paused;
}

/* Cards */
.nft-card {
  min-width: 250px;
  background-color: #1a1f35;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.nft-card:hover {
  transform: translateY(5px);
}
.nft-card a{
  text-decoration: none;
  color: inherit;
  padding: 0;
}
.nft-card a img {
  width: 100%;
  border-radius: 12px;
}

/* Animation: Right to Left */
@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* On small screens: stop auto-scroll */
@media (max-width: 768px) {
  .nft-scroll-container {
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}



.roadmap {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.roadmap h1 {
  text-align: center;
  color: #fff;
  margin-bottom: 60px;
  font-size: 4rem;
  margin-bottom: 0rem;
  font-family: 'mainFont', sans-serif; /* Use the custom font */


}

.timeline {
  position: relative;
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 6px;
  background-color: #444;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -3px;
  background: linear-gradient(
    to bottom,
    #c4414c 0%,       /* pink start */
    #c4414c 47%,      /* pink until 3rd item */
    #444 42%,         /* gray from 4th item */
    #444 100%
  );
}

.container {
  padding: 20px 100px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.container.left {
  left: 0;
}

.container.right {
  left: 50%;
}

.container::before {
  content: '';
  position: absolute;
  top: 45%;
  width: 16px;
  height: 16px;
  background-color: #444;
  border: 4px solid var(--nav-bg);
  rotate: 45deg;
  z-index: 1;
}
.highlight::before {
  content: '';
  position: absolute;
  top: 45%;
  width: 16px;
  height: 16px;
  background-color: #c4414c;
  rotate: 45deg;
  z-index: 1;
}


.container.left::before {
  right: -12px;
}

.container.right::before {
  left: -12px;
}

.content {
  background-color: #1e1e2f;
  padding: 40px;
  border-radius: 8px;
  position: relative;
  color: #fff;
}

.content h2 {
  font-size: 18px;

}

.content p {
  margin: 0;
  font-size: 14px;
}

.container img {
  width: 70px;
  height: auto;
  margin-top: 15px;
}

.highlight .content {
  background-color: #d74f4f;
  color: #fff;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 27px;
  }

  .container {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }

  .container.right {
    left: 0%;
  }

  .container.left::before, .container.right::before {
    left: 15px;
  }
}







.nft-section2 {
  padding: 0rem 2rem 0rem 2rem;
  background-color: var(--nav-bg);
  overflow: hidden;
  padding-bottom: 100px;
}



.nft-scroll-wrapper2 {
  overflow: hidden;
  position: relative;
}

/* Moving LEFT ➡ RIGHT */
.nft-scroll-container2 {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scroll-right 30s linear infinite;
}

.nft-scroll-container2:hover {
  animation-play-state: paused;
}

.nft-card2 {
  min-width: 250px;
  background-color: #1a1f35;
  border-radius: 16px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}
.nft-card2:hover {
  transform: translateY(5px);
}
.nft-card2 a img {
  width: 100%;
  border-radius: 12px;
}

/* Keyframes for LEFT ➡ RIGHT scroll */
@keyframes scroll-right {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Stop animation on small screens, allow swipe */
@media (max-width: 768px) {
  .nft-scroll-container2 {
    overflow-x: auto;
    scroll-behavior: smooth;
  }
}





.windows {
  padding: 0rem 0rem;
  color: var(--text-color);
  display: flex;
  flex-direction: column;
  padding-bottom: 0px;
  padding-top: 0px;
}
.windows_line .card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(6, 13, 38, 0.75);
      z-index: 1;
    }

.window_line {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 20PX;
}

.card {
      position: relative;
      width: 100%;
      height: 150px;
      border-radius: 15px;
      overflow: hidden;
      cursor: pointer;
      text-decoration: none;
      color: white;
      display: flex;
      align-items: flex-end;
      padding: 20px;
      transition: transform 0.3s ease;
      background-size: cover;
      background-position: center;
      transform: scale(1);
      margin-bottom: 1.5%;
      overflow: hidden;

      background-color: #dddcda;
  transition: var(--transition);
    }
    .card:hover {
      transform: scale(0.98);
  background-color: var(--nav-bg);

    }

    .card .text {
      font-size: 20px;
      font-weight: bold;
      background: rgba(0, 0, 0, 0.5);
      padding: 5px 10px;
      border-radius: 5px;
    }


        @media (max-width: 768px) {
          .window_line {
            flex-direction: column;
            align-items: center;
          }
          .card {
            width: 90%;
            margin-bottom: 20px;
          }
        }













/*---social section styles---*/

.socialmedia {
  width: 95%;
  display: flex;
  padding: 0;
  
}
.so-content{
  padding: 2rem 2rem;
 background-color: var(--cream);
 border-radius: 20px;
 display: flex;
 justify-content: center;
  align-items: center; 
}
.socialmedia .so-content .left-so{
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: lef;
}
.socialmedia .so-content .left-so img {
  width: 75%;
}
.socialmedia .so-content .right-so {
  width: 50%;
}
.socialmedia .so-content .right-so h1 {
  font-size: 4rem;
  margin-bottom: 0rem;
  font-family: 'MainFont', sans-serif;
  color: var(--nav-bg);
  text-align: left;
}

.socialmedia .so-content .right-so .windows .button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 2%;
  margin-top: 20px;
  justify-content: center;
  align-items: center;
}
.socialmedia .so-content .right-so .button-group button {
  width: 49%;
  font-size: 1rem;
  transition: var(--transition);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin-bottom: 1.5%;
}

.socialmedia .so-content .right-so .button-group .x{
  background-image: url('assets/xbg.png');
  background-size: cover;
}
.socialmedia .so-content .right-so .button-group .dis{
  background-image: url('assets/dc.png');
  background-size: cover;
  background-position: center top;
}
.socialmedia .so-content .right-so .button-group button img{
  width: 50px;
 padding: 75px 0px 75px 0px;
   filter: invert(1);
}

.socialmedia .so-content .right-so .button-group button:hover img{
        filter: invert(1);
        }
.socialmedia .so-content .right-so .button-group button img.discord{
  width: 60px;
  padding: 70px 0px 70px 0px;
}
.socialmedia .so-content .right-so .button-group button:hover {
  background-color: var(--nav-bg);
  transform: scale(1.05);
}




    @media (max-width: 768px) {
      .socialmedia {
        padding: 1rem 1rem;
        width: 100%;
      }
      .socialmedia .so-content {
        flex-direction: column;
        align-items: center;
        padding: 1rem;
      }
      .socialmedia .so-content .left-so {
        width: 95%;
        align-items: center;
        margin-bottom: 20px;
      }
      .socialmedia .so-content .left-so img {
        width:  100%;
      }
      .socialmedia .so-content .right-so {
        width: 95%;
        text-align: center;
      }
      .socialmedia .so-content .right-so h1 {
        font-size: 3rem;
        width: 100%;
        text-align: center;
        margin-bottom: 0;
      }
      .socialmedia .so-content .right-so p {
        font-size: 1rem;
        width: 100%;
      }
      .socialmedia .so-content .right-so .button-group {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        flex-direction: column;
      }
      .socialmedia .so-content .right-so .button-group button {
        padding: 8px 16px;
        font-size: 0.9rem;
        margin: 10px;
        
      }
      .socialmedia .so-content .right-so .button-group button {
        width: 100%;
      }

      .socialmedia .so-content .right-so .button-group button img{
        width: 25px;
        padding: 12.5px 0px 12.5px 0px;
        }
        
        .socialmedia .so-content .right-so .button-group button img.discord{
          width: 30px;
          padding: 10px 0px 10px 0px;
        }

        .socialmedia .so-content .right-so .button-group button{
          width: 90%;
          padding: 40px 10px ;
          justify-content: center;
        }


    }









  /* Footer styles */

  .footer {
      padding: 2%;
      background-color: var(--primary-color);
    }

    .footer-top {
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
      border-bottom: 1px solid #333;
    }

    
    .footer-bottom {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      padding-top: 20px;
      font-size: 16px;
      color: #aaa;
    }
    .footer-bottom a img {
      width: 20px;
      height: 20px;
      vertical-align: middle;
      margin-right: 2px;
    }
    .footer-bottom a{
      color: #aaa;
      text-decoration: none;
      transition: color 0.5s;
    }

    @media (max-width: 768px) {
      .footer {
        padding: 5%;
        flex-direction: column;
      }
      .footer-top {
        flex-direction: column;
        align-items: center;
        gap: 30px;
      }
      .footer-brand {
        max-width: 95%;
        text-align: left;
      }
      .footer-links {
        width: 95%;
        flex-direction: wrap;
        gap: 10%;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
      }
    }