body {
      margin: 0;
      font-family: 'DM Sans', sans-serif;
      background: linear-gradient(to bottom, #0b0c10, #121417);
      color: #fff;
      line-height: 1.6;
    }

    a {
      color: #00ffe5;
      text-decoration: none;
    }

    a:hover {
      text-decoration: none;
    }
        html {
      scroll-behavior: smooth;
    }
    

    .hero {
       position: relative;
      width: 100vw;
      max-width: 100%;
      height: 80vh;
      margin: 0;
      padding: 0;
      background-image: url('../assets/Banner1920.png');
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: white;
      overflow: hidden;
    }

    .hero-content {
      background-color: rgba(0, 0, 0, 0.4);
      padding: 1rem 2rem;
      margin: 0 auto;
      text-align: center;
    }
    
    .hero-title {
      font-family: 'Anton', sans-serif;
      font-size: 3rem;
      margin: 0;
    }
    
    .hero-tagline {
      font-size: 1.2rem;
      margin-top: 10px;
      font-style: italic;
      color: #e0e0e0;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.4); /* darkens the background */
      z-index: 0;
    }
    
    .hero h1,
    .hero p {
      z-index: 1;
      position: relative;
    }
    
    @media (max-width: 768px) {
        
      .hero {
        background-position: center top;
        background-size: contain;
        height: auto;
        min-height: 60vh;
        padding: 0.25rem 0.75rem;
        flex-direction: column;
      }
      
      .hero-content {
         background-color: rgba(0, 0, 0, 0.25); /* Make it less dark */
          padding: 0.5rem 1rem; /* Reduce padding */
          max-width: 60%;
          margin-top: -200px; /* Raise it higher */
          border-radius: 8px; /* Optional: give it a smoother shape */
      }
      
      .hero-title {
        font-size: 1rem;
      }
    
      .hero-tagline {
        font-size: 1rem;
      }
    }
    
    
    section {
      padding: 60px 20px;
      max-width: 90%;
      margin: 0 auto;
      align-items: center;
      justify-content: center;
    }

    h2 {
      font-size: 2rem;
      font-family: 'Anton', sans-serif;
      margin-bottom: 20px;
      border-bottom: 2px solid #00ffe5;
      display: inline-block;
      padding-bottom: 5px;
    }
    

    .tile-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
      gap: 20px;
      margin-top: 20px;
    }

    .tile {
      background: #1f2833;
      border: none;
      padding: 20px;
      border-radius: 12px;
      box-shadow: 0 0 8px rgba(0, 255, 229, 0.2);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .tile:hover {
      transform: scale(1.05);
      box-shadow: 0 0 20px rgba(0, 255, 229, 0.5);
    }


    .community-links {
      text-align: center;
    }

    .buy-button {
      background: #00ffe5;
      color: black;
      padding: 12px 28px;
      font-weight: 700;
     
      border-radius: 30px;
      box-shadow: 0 0 10px #00ffe5;
      transition: transform 0.2s, background 0.3s;
    }
    .buy-button:hover {
      transform: scale(1.05);
      background: #00d4c2;
    }

    
    .button-icon {
      width: 40px;
      height: 40px;
    }
    
    .social-button {
      display: inline-flex; /* better alignment */
      align-items: center;
      gap: 10px;
      padding: 10px 20px;

      color: #000;
      border-radius: 6px;
      font-weight: bold;
      transition: background 0.3s, color 0.3s;
      text-decoration: none;
    }
    
    .social-button:hover {
      background: #00c2aa;
      color: #000;
    }
    
    .social-icon {
      width: 40px;
      height: 40px;
    }

    footer {
      text-align: center;
      padding: 20px;
      background: #1f2833;
      font-size: 0.9rem;
    }

    .navbar-header {
      background: #0b0c10;
      border-bottom: 1px solid #1f2833;
      position: sticky;
      top: 0;
      z-index: 1000;
      padding: 15px 0;
      
    }

    .navbar-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: relative;
    }

    .navbar-left {
      display: flex;
      align-items: center;
      gap: 30px;
    }

    .navbar-logo {
      display: flex;
      align-items: center;
      font-weight: bold;
      color: white;
      font-size: 1.2rem;
    }

    .navbar-logo img {
      height: 40px;
      width: auto;
      margin-right: 10px;
    }

    .navbar-links {
      display: flex;
      gap: 30px;
      font-weight: bold;
      font-size: 1.2rem;
    }

    .navbar-links a {
      color: #ffffff;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .navbar-links a:hover {
      color: #00ffe5;
    }

    .navbar-action {
      display: flex;
      align-items: center;
    }

    .navbar-action .buy-button {
      margin: 0;
    }

    .menu-toggle {
      display: none;
      font-size: 2rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .mobile-menu-overlay {
      display: none;
      flex-direction: column;
      position: relative;
      top: 100%;
      right: 0;
      width: 100%;
      margin-top: 0;
      background: #0b0c10;
      z-index: 2000;
      padding: 20px 30px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
      align-items: flex-start;
      border-bottom: 1px solid #1f2833;
      animation: slideDown 0.25s ease;
    }

    @keyframes slideDown {
      from {
        opacity: 0;
        transform: translateY(-10px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .mobile-menu-overlay.show {
      display: flex;
    }

    .mobile-menu-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      width: 100%;
    }

    .mobile-menu-header img {
      height: 40px;
    }

    .menu-close {
      font-size: 2rem;
      background: none;
      border: none;
      color: white;
      cursor: pointer;
    }

    .mobile-menu-links {
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin: 20px 0;
    }

    .mobile-menu-links a {
      font-size: 1.4rem;
      color: white;
      font-weight: bold;
      text-decoration: none;
    }

    .mobile-menu-links a:hover {
      color: #00ffe5;
    }

    .mobile-menu-action {
      margin-top: auto;
    }

    .mobile-menu-action .buy-button {
      font-size: 1rem;
      padding: 12px 24px;
      background: #8efff7;
      border-radius: 20px;
      font-weight: bold;
      color: black;
    }

    @media (max-width: 768px) {
      .navbar-links {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .navbar-action {
        display: none;
      }
    }
    
    .roadmap-list {
      list-style: none;
      padding-left: 0;
      display: flex;
      flex-direction: column;
      gap: 20px;
      font-size: 1rem;
      line-height: 1.5;
      
      padding-left: 20px;
    }
    
    .roadmap-list li {
      position: relative;
      padding-left: 10px;
    }
    
    .roadmap-list li::before {
      content: "●";
      position: absolute;
      left: -17px;
      color: #00ffe5;
      font-size: 1.2rem;
      line-height: 1;
    }
    
    
    
    
    .auth-form {
      background: #1f2833;
      border-radius: 12px;
      padding: 20px;
      margin-top: 20px;
      box-shadow: 0 0 15px rgba(0, 255, 229, 0.2);
      text-align: left;
      max-width: 300px;
      margin-left: auto;
      margin-right: auto;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, opacity 0.4s ease;
      opacity: 0;
    }
    
    .auth-form.show {
      max-height: 500px;
      opacity: 1;
    }

    
    .auth-form input {
      display: block;
      width: 100%;
      padding: 10px;
      margin-bottom: 12px;
      border-radius: 8px;
      border: none;
      font-size: 1rem;
    }
    
    .auth-form button {
      width: 100%;
      margin-top: 10px;
    }
    
    .hidden {
      display: none !important;
    }
    
    @keyframes slideDown {
      0% {
        opacity: 0;
        transform: translateY(-20px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }
    

    .popup {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0, 0, 0, 0.6);
      display: flex; align-items: center; justify-content: center;
      z-index: 9999;
    }
    
    .popup-content {
      background: #1f2833;
      padding: 20px 30px;
      border-radius: 10px;
      text-align: center;
      box-shadow: 0 0 15px rgba(0, 255, 229, 0.5);
    }
    
    .hidden {
      display: none;
    }

    
    .popup-content button {
      margin-top: 20px;
      padding: 10px 20px;
      background: #00ffe5;
      color: #000;
      border: none;
      border-radius: 8px;
      font-weight: bold;
      cursor: pointer;
    }
    .menu-icon {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  margin-right: 6px;
}

    