        * {
            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;
        }

        h1 {
            font-family: 'Orbitron', sans-serif;
            font-size: 3.5em;
            color: #00f7ff;
            letter-spacing: 3px;
            text-transform: uppercase;
            text-align: center;
            margin: 20px 0;
        }

        h1 span {
            color: #ff00a1;
        }

        header { 
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px;
            height: 60px;
            width: 100%;
            position: sticky; /* makes it stick on scroll */
            top: 0;           /* required for sticky to work */
            z-index: 1000;    /* keeps it above other elements */
            background: #131030 100%; /* ensure background covers content under it */
        }
                
                
        /* LOGO */
        .logo {
            max-width: 65px;
            max-height: 65px;
            margin-top: 12.5px;
        }
        
        
        /* NAV MENU */
        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 {
      display: none;
      top: 0;
      right: 0;
      display: none;
      color: #00000000;
      font-size: 24px;
      cursor: pointer;
      margin-right: auto;
      z-index: 1000;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }


    .section {
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(12px);
        border-radius: 20px;
        padding: 40px;
        max-width: 100%;
        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;
        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 {
      display: flex;
      align-items: center;
      width: 100%;
      height: 14px;
      background: rgba(255,255,255,0.06);
      border-radius: 8px;
      overflow: hidden;
      position: relative;
      font-size: 12px;
    }

    #progress {
      align-items: center;
      font-size: 8px;
      height: 100%;
      background: linear-gradient(90deg,#49dbff, goldenrod ,#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: 400; }
    
    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;
        font-size: 15px;
        cursor: pointer;
        transition: all 0.3s;
        width: 40%;
        display: inline-block;
        align-items: center;
        justify-content: center;

    }

    .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: 10px;
        margin-top:8px; 
        padding:8px;
        color: #00f7ff;
        border-radius:8px;
        background:rgba(255,255,255,0.02);
        font-weight:600;
    }
    



     .balances{
         display: grid;
         grid-template-columns: repeat(2,2fr);
         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;
        font-weight: 650;
        font-size: 13px;
        font-family: system-ui,'Segoe UI', Roboto, sans-serif;

    }
    .copy-ref{
        width: 40%;
        padding: 15px;
        margin-left: 10px;
        border: none;
        border-radius: 8px;
        font-size: 1em;
    }

    .dashboard{
            font-weight: 600;
            box-shadow: 5px 2px;
            transition: all 0.3s;
            color: rgb(97, 231, 213);
            border-radius: 5px;
            width: 98%;

    }

    .dash-switch {
      width: 100%;
      background: linear-gradient(90deg, #00f7ff36, #ff00a248);
      padding: 5px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-bottom-left-radius: 15px;
      border-bottom-right-radius: 15px;
      border-bottom: 1px solid #222;
    }
     
    .sec-body {
      margin: 0;
      font-family: 'Poppins', sans-serif;
      background: #0c0c0c86;
      color: #dfdede;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: 100vh;
    }

    .tab-container {
      display: flex;
      gap: .5px;
      background: #0464751e;
      padding: 3px 5px;
      border-radius: 10px;
    }

    .tab {
      padding: 3px 8px;
      border-radius: 10px;
      border: 0px solid silver;
      background: #1a1a1a1a;
      color: #bbb;
      cursor: pointer;
      transition: 0.3s;
    }

    .tab.active {
      background: #14f195;
      color: #000;
      font-weight: bold;
    }

    .dash-section {
      display: none;
      margin-top: 30px;
      width: 90%;
      max-width: 500px;
      background: #11111100;
      padding: 25px;
      border-radius: 15px;
      box-shadow: 0 0 10px rgba(20, 241, 149, 0.1);
      animation: fadeIn 0.4s ease-in-out;
    }

    .dash-section.active {
      display: block;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .input-group {
      display: flex;
      flex-direction: column;
      margin-bottom: 15px;
    }

    .input-group label {
      margin-bottom: 5px;
      font-size: 14px;
      color: #aaa;
    }

    .input-group input {
      padding: 10px;
      border: 1px solid rgb(75, 74, 74);
      border-radius: 8px;
      background: #1e1e1e63;
      color: #fff;
      outline: none;
    }

    .btn {
      width: 100%;
      background: linear-gradient(90deg, #00f7ff, #ff00a1);
      color: #fff;
      font-weight: 600;
      padding: 12px;
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: 0.3s;
    }

    .btn-primary {
      background: linear-gradient(90deg, #00f7ff, #ff00a1);
      color: #fff;
    }

    .btn-primary:hover {
      transform: scale(1.02);
      box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);    
    }

    .gatewaySelect{
        color: ghostwhite;
        background-color: #0f0c29;
        border: none;
        width: 100%;
        height: 20px;
        display: flex;
        justify-content: center;
        align-items: flex-start;
    }

    .option-label{
        display: none;
    }


    .convert-display {
      font-size: 13px;
      color: #ccc;
    }

    .bankform{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .bankAcct{
        height: 30px;
    }

    .savebank{
        width: 50%;
        height: 50px;
        text-align: center;
        background: linear-gradient(90deg, #00f7ff, #ff00a1);
        color: #fff;
        font-weight: 500;
        border: none;
        transition: all 0.3s;

    }

        .savebank:hover {
            transform: scale(1.02);
            box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);    
        }

    .token-price{
        width: 100%;
        display: flex;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
        color: #ffa500;
        font-size: 12px;
        gap: 10px;
    }

    .rc-price{
        color: #ffa500; 
        display: flex; 
        align-items: center; 
        justify-content: center;
    }


        .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.1);
            background-color: 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 { display: flex; flex-direction: row; align-items: center; }
            .logo { 
                  max-width: 100px;
                  max-width: 55px;
                  max-height: 55px;
                  margin-top: 10px;
             }

            nav {
                display: none;
                flex-direction: column;
                position: fixed;
                justify-content: center;
                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-menu {
             position: absolute;
             top: 5;
             right: 0;
             background: #111;
             flex-direction: column;
             width: 200px;
             padding: 7px;
             display: none; /* hidden by default */
             }

             .hamburger {
             display: block; 
             color: #00f7ff;
             z-index: 1000;
             margin-right: 0px;
             }
     
            .hamburger:hover{
             color: #00d400;
            }

            nav.show {
                display: flex;
                transform: translateX(0);
                top: 0;
            }
            
            .balances{
            display: grid;
            grid-template-columns: repeat(1,1fr);
            gap: 2px;
            margin-top:6px;
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            border-radius: 20px;
            padding: 4px;
            width: 100%;
            max-height: auto;
            box-shadow: 0 0 40px rgba(0, 255, 255, 0.3);
            border: 2px solid transparent;
            text-align: left;
            position: relative;
            overflow: hidden; 
        } 

           .balance-item{
            display: flex;
            position: relative;
            color: #00f7ff;
            font-size: 11px;
    }

            .countT{
            display: flex;
            align-items: center;
            justify-content: center;
            color: #14f100;
            font-size: 13px;
            
    }

        .gatewaySelect{
        color: ghostwhite;
        background-color: #0f0c29;
        border: none;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: flex-start;
        font-size: 12px;
        font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    }

            .hint{
            font-size: 12px;
            align-items: center;
            text-align: center;
            margin-left: 5px;
    }

        .estimate {
        display: flex;
        gap: 7px;
        margin-top:8px; 
        padding:8px;
        color: #00f7ff;
        border-radius:8px;
        background:rgba(255,255,255,0.02);
        font-weight:600;
        font-size: 12px;
        width: 100%;
    }

.social-handles {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 items per row */
    width: 100%;
    gap: 3px;
    justify-content: center;
}

.social-handles a {
    color: #00f7ff;
    font-size: 1.5em;
    text-align: center;
    transition: color 0.3s;
}

   }

        
           /* desktop styles */

        /* @media (min-width: 769px) {
        }
        
    .team-grid, .investors-grid { grid-template-columns: 1fr; } */


        /* 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;
    }