html {
    scroll-behavior: smooth;
  }
  
  
  
body {
    font-family:  Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    background-image: url("backgroundimage.png");
    background-size: 2000px;
    background-position-x: 0px;
    color: white;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  
  
nav {
    top: 0;
    padding: 19px;
    background-color: #222222;
    box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
  }
  
.menu div {
      height: 4px;
      background-color: rgb(156, 156, 156);
      margin: 5px 0;
      border-radius: 25px;
      box-shadow: rgba(151, 65, 252, 0.2) 0 15px 30px -5px;
      transition: 0.3s;
  }
  
  
.menu {
    width: 30px;
    display: block;
    margin: 1em em 1em;
  }
  
.one {
    width: 30px;
  }
  
.two {
    width: 20px;
  }
  
.three {
    width: 25px;
  }
  
.menu:hover div {
    width: 30px;
    background-color: white;
  }
  
  
.sidemenu {
    
  }
  
  
.navbtn {
    position: absolute;
    color: black;
    top: 15px;
    left: 100px;
    margin-right: 0px;
  }
  
  
.navbtn1, .navbtn2, .navbtn3, .navbtn4, .navbtn5 {
    background: transparent;
    border: none;
    color: rgb(156, 156, 156);
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    height: 40px;
    width: 120px;
    transition: all 0.05s ease-in-out;
    text-transform: capitalize;
    letter-spacing: 1px;
  }
  
  
  
.navbtn1:hover, .navbtn2:hover, .navbtn3:hover, .navbtn4:hover, .navbtn5:hover {
      color: white;
      transform: scale(1.01);
      box-shadow: white;
      
  }
  
  
.navbtn1:active, .navbtn2:active, .navbtn3:active, .navbtn4:active, .navbtn5:active {
    transform: translateY(2px);
    box-shadow: #ffffff;
  }
  
  
.navbarlogo {
    position: absolute;
    right: 10px;
    top: 5px;
    width: 60px;
  }
  
  
header { 
      position: relative;
      top: 0px;
      padding: 10px;
      background: rgba(19, 19, 19, 0.705);
  }
  
  
  
.phrasecatch {
    position: relative;
    padding: 0px 80px 80px 80px;
    font-size: 25px;
    font-weight: bold;
    top: 10px;
  }
  
.headermaintext {
    position: relative;
    letter-spacing: -3px;
  }
  
.headerundertext {
    position: relative;
    top: -5px;
    font-size: 45px;
    letter-spacing: -4px;
    color: rgb(221, 221, 221);
  }
  
.catch {
    position: relative;
    color: #cccccc;
    top: -0px;
    font-size: 25px;
  }

  .ecosystem-section {
    position: relative;
    top: 0px;
    padding: 0px 40px;
    text-align: center;
  }

  .ecosystem-section h1 {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .ecosystem-section p {
    font-size: 20px;
    color: #d8cfff;
    margin-bottom: 60px;
  }

  .cards-eco {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }

  .card-eco {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 280px;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.4);
    transform: perspective(600px) rotateY(0deg);
  }

  .card-eco:hover {
    transform: perspective(600px) rotateY(8deg) scale(1.05);
    box-shadow: 0 0 30px rgba(142, 45, 226, 0.7);
    background: linear-gradient(145deg, #6a0dad, #321964);
  }

  .card-eco h3 {
    font-size: 24px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #f087ff, #6e1fce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .card-eco p {
    font-size: 16px;
    color: #d8cfff;
  }

  .scroll-anim {
    margin-top: 80px;
    font-size: 36px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: scrollFade 2s infinite alternate;
  }

  @keyframes scrollFade {
    0% { opacity: 0.6; transform: translateY(0px);}
    100% { opacity: 1; transform: translateY(10px);}
  }

  .section-title {
    margin-top: 100px;
    font-size: 42px;
    color: #b497ff;
    text-align: center;
  }

  .section-subtext {
    margin-top: 20px;
    font-size: 18px;
    color: #d8cfff;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
  }

  .card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    width: 300px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.4);
  }

  .card:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(142, 45, 226, 0.7);
    background: linear-gradient(145deg, #6a0dad, #321964);
  }

  .card h3 {
    font-size: 24px;
    background: linear-gradient(90deg, #f087ff, #6e1fce);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 15px;
  }

  .card p {
    font-size: 16px;
    color: #d8cfff;
  }

  .big-section {
    margin-top: 100px;
    top: -150px;
    position: relative;
  }

  .big-text {
    font-size: 38px;
    background: linear-gradient(90deg, #00f2fe, #4facfe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 30px;
    font-weight: bold;
  }

  .timeline {
    margin-top: 60px;
    padding: 20px;
    border-left: 2px solid #8e2de2;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }

  .timeline div {
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
  }

  .timeline div::before {
    content: '';
    width: 12px;
    height: 12px;
    background: #8e2de2;
    border-radius: 50%;
    position: absolute;
    left: -7px;
    top: 5px;
  }

  .timeline p {
    font-size: 18px;
    color: #d8cfff;
    text-align: left;
  }

  .graph-section {
    position: relative;
    text-align: center;
    top: -38px;
    padding: 40px;
  }

  .graph-section h2 {
    margin-bottom: 30px;
    background: linear-gradient(90deg, #ff7f50, #ff1493);
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
  }

  .chart-container {
    position: relative;
    width: 80%;
    max-width: 600px;
    margin: 0 auto;
    padding-bottom: 50px;
  }
  
.content {
    position: relative;
    top: 0px;
    padding: 150px;
    background: rgba(19, 19, 19, 0.705);
  }
  
.twobuttons {
    position: relative;
    align-self: center;
    background: transparent;
    padding: 100px;
    top: -190px;
  }
  
.mainbtn {
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    border: 1px solid rgb(255, 255, 255); 
    width: 150px;
    height: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.9);
    transition: 0.1s ease;
    background: linear-gradient(-90deg, #4b0082, #8701c5);
    margin-right: 10px;
    cursor: pointer;
  }
  
.mainbtn:hover {
    border: 2px solid rgb(131, 0, 253);
    transform: translateY(-2px);
    background: linear-gradient(0deg, #4b0082, #8701c5);
  }
  
.mainbtn:active {
    transform: scale(0.99);
    border: 1px solid rgb(234, 0, 255);
  }
  
.secondbtn {
    position: relative;
    color: white;
    font-size: 16px;
    font-weight: bold;
    border-radius: 25px;
    border: 1px solid rgb(255, 255, 255);
    background: #070044;
    width: 150px;
    height: 50px;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.9);
    transition: 0.1s ease;
  }
  
.secondbtn:hover {
    color: #000000;
    background-color: white;
  }
  
.socials {
    position: relative;
    text-align: center;
    align-content: center;
    align-self: center;
    top: -190px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px rgba(142, 45, 226, 0.4);
    border-radius: 20px;
  }
  
.socialstext {
    position: relative;
    top: 0px;
    
  }
  
.discord {
    position: relative;
    top: -13px;
    margin-right: 15px;
  }
  
.instagram {
    position: relative;
    margin-right: 15px;
    top: 0px;
  }
  
.tiktok {
    position: relative;
    margin-right: 15px;
    top: 0px;
  }
  
.telegram {
    position: relative;
    top: 0px;
  }
  
.discord:hover, .instagram:hover, .tiktok:hover, .telegram:hover {
    transform: scale(1.07);
    
  }
  
.footer {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    color: #ffffff;
    text-align: center;
    padding: 30px 20px;
    font-size: 14px;
    margin-top: 0px;
    border-top: 1px solid #ddd;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
.footer-nav {
    display: flex;
    gap: 25px;
    margin-bottom: 15px;
  }
  
.footer-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    position: relative;
    font-size: 16px;
    transition: color 0.3s ease;
  }
  
.footer-nav a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    background-color: #6a0dad;
    left: 50%;
    bottom: -5px;
    transition: width 0.3s ease, left 0.3s ease;
  }
  
.footer-nav a:hover {
    color: #6a0dad;
  }
  
.footer-nav a:hover::after {
    width: 100%;
    left: 0;
  }
  
.footer-text {
    margin-bottom: 10px;
    font-size: 14px;
  }
  
.footer-contact a {
    color: #ffffff;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  
.footer-contact a:hover {
    color: #6a0dad;
  }



