        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
            color: #ffffff;
            min-height: 100vh;
            padding: 20px;
        }
        header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            position: relative;

        }
        .logo {
            max-width: 50px;
            max-height: 50px;
        }

        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 2.5em;
            color: #00f7ff;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
            margin: 20px 0;
        }

        h1 span {
            color: #ff00a1;
        }

        nav {
            display: flex;
            gap: 20px;
        }

        nav a {
            color: #00f7ff;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s;
        }
        nav a:hover {
            color: #ff00a1;
        }

        nav {
          display: flex;
          gap: 20px;
        }
     
        nav a {
          text-decoration: none;
          color: var(--gold-2);
          font-size: 0.9rem;
          font-weight: 700;
          color: #00f7ff;
          width: 80px;
        }
        nav a.cta {
          color: var(--bg-dark);
          background: var(--gold);
          padding: 8px 14px;
          border-radius: 4px;
          font-weight: 600;
        }

        /* Toggle between pages */
    .nav-btn .active {
      color: #14f100; 
    }
    .page {
      display: none;
    }
    .page.active {
      display: block;
      animation: fadeIn 0.5s ease-in-out;
    }

    .nav-btn:hover{
        color: #00d400;
    }
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }


    /* Hamburger */
    .hamburger {
      top: 0;
      right: 0;
      font-size: 24px;
      cursor: pointer;
    }

    /* Mobile styles */
    @media (max-width: 768px) {
      #nav-menu {
        position: absolute;
        top: 25px;
        right: 0;
        background: #111;
        flex-direction: column;
        width: 200px;
        padding: 10px;
        display: none; /* hidden by default */
      }

      #nav-menu.show {
        display: flex;
      }

      .hamburger {
        color: #00f7ff;

      }
    }

       /* desktop styles */
    @media (min-width: 768px) {

      .hamburger {
        display: none; 
        color: #240f3f00;
      }
    }



        .section {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            margin: 20px auto;
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
            border: 2px solid transparent;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .section:before {
            position: absolute;
            top: 2px;
            left: 2px;
            bottom: 2px;
            content: '';
            width: 50%;
            background: rgba(255,255,255,0.05);
        }
        .section span:nth-child(1) {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to right, #0c002b, #1779ff);
            animation: animate1 3s linear infinite;
        }

        .countT{
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 50px;
            color: #14f100;
        }

        .countdown {
          display: flex;
          justify-content: space-around;
          margin: 20px 0;
          font-family: Impact, Haettenschweiler, 'Arial Bold', sans-serif;
          font-size: 20px;
        }
    
        .countdown div {
          display: flex;
          justify-content: center;
          align-items: center;
          background: #111;
          padding: 0px;
          border-radius: 10px;
          width: 16%;
          height: 30px;
          border-left: 2px solid #14f100;
          border-right: 2px solid #14f100;
        }
    

        @keyframes animate1 {
            0% {
                transform: translateX(-100%);
            }
            100% {
                transform: translateX(100%);
            }
        }
        .section span:nth-child(2) {
            position: absolute;
            top: 0;
            right: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to bottom, #0c002b, #1779ff);
            animation: animate2 3s linear infinite;
            animation-delay: 1s;
        }
        @keyframes animate2 {
            0% {
                transform: translateY(-100%);
            }
            100% {
                transform: translateY(100%);
            }
        }
        .section span:nth-child(3) {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(to left, #0c002b, #1779ff);
            animation: animate3 3s linear infinite;
        }
        @keyframes animate3 {
            0% {
                transform: translateX(100%);
            }
            100% {
                transform: translateX(-100%);
            }
        }
        .section span:nth-child(4) {
            position: absolute;
            top: 0;
            left: 0;
            width: 2px;
            height: 100%;
            background: linear-gradient(to top, #0c002b, #1779ff);
            animation: animate4 3s linear infinite;
            animation-delay: 1s;
        }
        @keyframes animate4 {
            0% {
                transform: translateY(100%);
            }
            100% {
                transform: translateY(-100%);
            }
        }
        .section > * {
            position: relative;
            z-index: 1;
        }
        .presale-box {
            background: rgba(0, 255, 255, 0.1);
            padding: 20px;
            border-radius: 10px;
            margin: 20px 0;
        }
        #contractAddr {
            font-family: monospace;
            color: #00f7ff;
            word-break: break-all;
            font-size: 0.9em;
        }

        /* optional styles to make the progress look nice */
        .progress-bar {
          width: 100%;
          height: 14px;
          background: rgba(255,255,255,0.06);
          border-radius: 8px;
          overflow: hidden;
          position: relative;
        }
        #progress {
          height: 100%;
          width: 0%;
          background: linear-gradient(90deg,#14f100,#00d400);
          transition: width 600ms cubic-bezier(.2,.9,.2,1);
          box-shadow: 0 2px 8px rgba(0,0,0,0.25) inset;
        }
        #raised { font-weight: 600; }
        

        input, button {
            width: 100%;
            padding: 15px;
            margin: 10px 0;
            border: none;
            border-radius: 8px;
            font-size: 1em;
        }
        input {
            background: rgba(255, 255, 255, 0.08);
            color: #fff;
            border: 2px solid #00f7ff;
            transition: border-color 0.3s;
        }
        input:focus {
            outline: none;
            border-color: #ff00a1;
        }
        .button {
            background: linear-gradient(90deg, #00f7ff, #ff00a1);
            color: #fff;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            width: 40%;
        }
        .button:hover {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }
        .output {
            font-size: 1.3em;
            color: #00f7ff;
            font-weight: 600;
            margin: 20px 0;
        }
        .error {
            color: #ff00a1;
            font-size: 0.9em;
            margin: 20px 0;
        }

.carousel {
  overflow: hidden;
  width: 100%;
  background: #11111100;
  padding: 20px 0;
}

.carousel-track {
  display: flex;
  gap: 20px;
  width: max-content; /* 👈 allow full width of all items */
  animation: scroll-left 20s linear infinite; /* slowed for smoother effect */
}

.carousel-track img {
  height: 30px;
  flex-shrink: 0;
  object-fit: contain;
}

/* Infinite scroll animation */
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%); /* 👈 only half if you duplicate images */
  }
}

        
        .estimate {
        display: flex;
        gap: 15px;
        margin-top:8px; 
        padding:8px;
        color: #00f7ff;
        border-radius:8px;
        background:rgba(255,255,255,0.02);
        font-weight:600
    }
    



     .balances{
         display:flex;
         flex-direction: row;
         gap: 50px;
         margin-top:8px;
         background: rgba(255, 255, 255, 0.05);
         backdrop-filter: blur(12px);
         border-radius: 20px;
         padding: 40px;
         max-width: 100%;
         max-height: auto;
         box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
         border: 2px solid transparent;
         text-align: center;
         justify-content: center;
         position: relative;
         overflow: hidden; 
     }    
        
        
    .balance-item{
        display: flex;
        gap: 15px;
        color: #00f7ff;

    }
    .copy-ref{
        width: 40%;
        padding: 15px;
        margin-left: 10px;
        border: none;
        border-radius: 8px;
        font-size: 1em;
    }

        .ref-link-input{
            max-width: 90%;
        }

        .field{
            align-items: center;
        }



        .Partners-H{
            display: flex;
            align-items: center;
            justify-content: center;
        }
         

        .team-grid, .investors-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .team-member, .investor {
            background: rgba(0, 255, 255, 0.1);
            padding: 20px;
            border-left: 3px solid navy;
            border-radius: 10px;
            text-decoration: none;
            color: #ffffff;
        }
        details summary {
            cursor: pointer;
            font-weight: 600;
            color: #00f7ff;
        }

        .team-img {
            width: 100px;
            height: 130px;
            border-radius: 7px;

        }

        .team-handles{
            display: flex;
            flex-direction: row;
            align-items: center;
            justify-content: center;
            gap: 10px;

        }

        .handle-logo {
            width: 20px;
            height: 20px;
            border-radius: 4px;
        }
         
        .position{
            font-size: 10px;
        }
        .connect {
            cursor: pointer;
            font-weight: 600;
            color: #ffffff;
        }

        .connect:hover {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
        }

        form input, form textarea {
            margin-bottom: 15px;
        }
        .social-handles {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        .social-handles a {
            color: #00f7ff;
            font-size: 1.5em;
            transition: color 0.3s;
        }
        .social-handles a:hover {
            color: #ff00a1;
        }
        .glow {
            animation: glow 1.5s infinite alternate;
        }

        .copy {
            text-decoration: none;
            color: #ffffff85;
        }

        .footer, .footer-text{
            max-width: 100%;
            height: auto;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        @keyframes glow {
            from { text-shadow: 0 0 10px #00f7ff, 0 0 20px #00f7ff; }
            to { text-shadow: 0 0 10px #ff00a1, 0 0 20px #ff00a1; }
        }
        @media (max-width: 768px) {
            h1 { font-size: 2em; }
            .section { padding: 20px; max-width: 100%; }
            header { flex-direction: row; align-items: center; }
            .logo { max-width: 100px; }
            .hamburger { display: block; z-index: 1000;}
            nav {
                display: none;
                flex-direction: column;
                position: fixed;
                right: 0;
                height: auto;
                max-height: 400px;
                width: 250px;
                background: rgba(0, 0, 0, 0.9);
                padding: 20px;
                z-index: 1;
                transform: translateX(100%);
                transition: transform 0.3s ease-in-out;
            }
            nav.show {
                display: flex;
                transform: translateX(0);
                top: 50px;
            }
            
            .balances{
            display: grid;
            grid-template-columns: repeat(2,1fr);
            gap: 10px;
            margin-top:8px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 40px;
            max-width: 800px;
            max-height: auto;
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
            border: 2px solid transparent;
            text-align: center;
            position: relative;
            overflow: hidden; 
        } 

           .balance-item{
            display: flex;
            position: relative;
            color: #00f7ff;
            font-size:13px;

    }


   }

            .team-grid, .investors-grid { grid-template-columns: 1fr; }
        
        @media (min-width: 1200px) {
            .section { max-width: 1000px; padding: 50px; }
            h1 { font-size: 3em; }
            nav { gap: 30px; }
        }


        /* Video styling */
        /* Button styling */
    .open-video-btn {
        background-color: #3f51b5;
        color: #fff;
        border: none;
        width: 50%;
        font-weight: bold;
        padding: 15px 25px;
        border-radius: 5px;
        cursor: pointer;
        font-size: 1rem;
        box-shadow: 0px 5px 3px  2px  rgb(0, 0, 0);
        transition: background-color 0.3s;
    }


    .open-video-btn:hover {
        background-color: #6a0085;
        box-shadow: 5px 3px 4px 2px rgb(0, 0, 0);
     }

     .card-title{
       display: flex;
       justify-content: center;
       align-items: center;
       width: 100%;
     }

     .info-card {
    max-width: 400px;
    border-color: #1eff00;
    border-radius: 10px;
    box-shadow: 5px 3px 4px 2px rgb(0, 0, 0);
    }
    .info-card .card-body {
        text-align: center;
        color: black;
        background-color: #9b9b9b;
        padding: 20px;
    }
    

        /* Modal container */
    .modal {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
        z-index: 1000;
    }

        /* Modal content */
    .modal-content {
        position: relative;
        width: 80%;
        max-width: 800px;
        background: #fff;
        border-radius: 10px;
        overflow: hidden;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .modal-content iframe {
        width: 100%;
        height: 450px;
        border: none;
    }

            /* Close button */
    .close-btn {
        position: absolute;
        top: 5px;
        right: 10px;
        background: #00a50e;
        color: #eeeeee;
        border: none;
        padding: 5px 10px;
        border-radius: 5px;
        font-size: 1.5rem;
        cursor: pointer;
        line-height: 1;
        width: 20px;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .close-btn:hover {
        background: #df1ad5;
    }
        .tip-div{
        width: 90%;
        height: auto;
        margin-left: 15px;
    }