 * { margin:0; padding:0; box-sizing:border-box; }
  body { font-family:'Fredoka One', cursive; background:#fff; color:#333; scroll-behavior:smooth; }
  header {
    display:flex; justify-content:space-between; align-items:center;
    padding:20px 5%; position:sticky; top:0; background:#fff; z-index:100;
    box-shadow:0 2px 8px rgba(0,0,0,0.1);
  }
  header .logo { height:50px; }
  nav a { margin:0 15px; text-decoration:none; color:#333; }
  .btn { background:#FDC12F; padding:10px 20px; border-radius:8px; text-decoration:none; color:#222; font-weight:bold; }

  .hero {
    background: url('images/bg-hero.png') no-repeat center center;
    background-size: cover;
    position: relative;
    width: 100%;
    aspect-ratio: 1990 / 768;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 8%;
  
    padding-left: 1000px; 
  }
  .hero-logo {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 740px;
  max-width: 40vw;
  height: auto;
}
  .hero-content {
    max-width: 620px;
    color: #fff;
    text-align: left;
    text-shadow: 2px 2px 4px #000;
  }
  .hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
  }
  .hero-content p {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .hero-content .btn {
    font-size: 16px;
    padding: 12px 24px;
    margin-right: 10px;
    text-shadow: none;
  }
  .hero-icons {
    display: inline-flex;
    gap: 10px;
    vertical-align: middle;
  }
  .hero-icons img {
    height: 36px;
    width: 36px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
  }
  .burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

  @keyframes float {
    0% { transform: translatey(0px); }
    50% { transform: translatey(-10px); }
    100% { transform: translatey(0px); }
  }

  section { padding:80px 5%; text-align:center; }
  section h2 { font-size:36px; margin-bottom:40px; }
  .partners {
  padding: 60px 5%;
  text-align: center;
  background: #fff;
}

.partners h2 {
  font-size: 40px;
  margin-bottom: 40px;
}

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.partners-logos img {
  height: 80px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  filter: grayscale(100%);
  transition: filter 0.3s ease;
}

.partners-logos img:hover {
  filter: grayscale(0%);
}

.features {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 80px 10%;
  flex-wrap: wrap;
}

.feature-box {
  background: #f4f4f4;
  border-radius: 20px;
  padding: 30px;
  flex: 1 1 280px;
  max-width: 360px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 22px;
  margin-bottom: 16px;
}

.feature-box h3 img {
  width: 40px;
  height: 40px;
  background: #FDC12F;
  padding: 8px;
  border-radius: 8px;
}

.feature-box p {
  font-size: 16px;
  line-height: 1.6;
}
  .about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 10%;
  gap: 40px;
  flex-direction: row;
}
 .about-text {
  text-align: left;
  max-width: 600px;
}
.about-text h2 {
  font-size: 42px;
  margin-bottom: 20px;
}
.about-text p {
  font-size: 18px;
  line-height: 1.6;
  text-align: left;
}
  .about-buttons {
  justify-content: flex-start;
  margin-top: 30px;
}
  .about-image img {
    max-width: 700px;
    border-radius: 20px;
  }

  .tokenomics-section {
  padding: 80px 10%;
  text-align: center;
}
.tokenomics-section h2 {
  font-size: 48px;
  margin-bottom: 10px;
}
.tokenomics-section p {
  font-size: 18px;
  margin-bottom: 30px;
}
.tokenomics-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tokenomics-tags span {
  background: #f5f5f5;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: bold;
  font-size: 16px;
}

.tokenomics-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.tokenomics-box img {
  width: 280px;
  max-width: 90%;
}
.tokenomics-list {
  list-style: none;
  padding: 0;
  text-align: left;
  font-size: 16px;
  font-weight: 500;
}
.color-box {
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-right: 10px;
  border-radius: 3px;
  vertical-align: middle;
}
.tokenomics-list li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}
.copy-btn {
  background: #fdc12f;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
}
.copy-btn:hover {
  background: #e3aa1c;
}

.howtobuy-section {
  padding: 80px 10%;
  text-align: center;
}
.howtobuy-section h2 {
  font-size: 42px;
  margin-bottom: 10px;
}
.howtobuy-section p {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 40px;
}
.steps {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  flex-wrap: wrap;
}
.step-box {
  background: #f3f3f3;
  padding: 30px 20px;
  border-radius: 20px;
  flex: 1;
  min-width: 250px;
  max-width: 32%;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.step-box img {
  width: 60px;
  height: auto;
  margin-bottom: 15px;
}
.step-box h3 {
  font-size: 20px;
  margin-bottom: 10px;
}
.step-box p {
  font-size: 16px;
  font-weight: 400;
}
.flying-muto {
  position: absolute;
  top: 20px;
  right: 5%;
  width: 250px;
  max-width: 30vw;
  z-index: 1;
}

.howtobuy-section {
  position: relative; 
  z-index: 1;
}

.howtobuy-section::before,
.howtobuy-section::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;

  background-size: contain;
  z-index: 0;
  animation: float 5s ease-in-out infinite;
}
.howtobuy-section::before {
  top: 60px;
  left: 10%;
}
.howtobuy-section::after {
  top: 140px;
  left: 30%;
}

.socials-section {
  background: url('images/bg-socials.png') no-repeat center/cover;
  padding: 200px 5% 180px;
  text-align: center;
  position: relative;
  border-radius: 30px;
  margin: 0px auto;
  max-width: 1200px;
  
  
}

.socials-section h2 {
  font-size: 60px;
  color: #fff;
  text-shadow: 2px 2px 5px #000;
  margin-top: 0;
  
}

.socials-section p {
  color: #fff;
  font-size: 18px;
  max-width: 700px;
  margin: 20px auto 40px;
  line-height: 1.6;
  font-weight: 600;
  margin-top: 0;
 
  
}

.socials-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px;
}

.socials-icons img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  background: #fff;
  padding: 6px;
}
.buy-social-btn {
  align-self: center;
  height: 48px; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  font-size: 16px;
  font-weight: bold;
}
.socials-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}

.muto-bottom {
  position: absolute;
  bottom: -15px; 
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  pointer-events: none;
  z-index: 2;
}
  footer {
    background:#1a1a1a; padding:60px 5%; color:#fff;
    display:flex; flex-wrap:wrap; justify-content:space-between;
    margin-top: 0;
  }
  footer .logo {
    height:60px; margin-bottom:20px;
  }
  footer .column {
    flex:1; min-width:200px;
    margin:20px 0;
  }
  footer h4 {
    margin-bottom:10px;
    font-size:18px;
    color:#fff;
  }
  footer ul { list-style:none; }
  footer li { margin-bottom:8px; font-size:14px; }
  footer .disclaimer {
    font-size:13px;
    color:#aaa;
    max-width:300px;
  }
  .flying-dollar {
  position: absolute;
  width: 80px;
  z-index: 1;
  pointer-events: none;
}

.dollar-top-left {
  top: 20px;
  left: 10%;
}
.dollar-bottom-right {
  bottom: 40px;
  right: 12%;
}
.dollar-top-right {
  top: 40px;
  right: 18%;
}
a {
  text-decoration: none; 
  color: inherit;          
}

a li {
  list-style: none;        
}
  @media (max-width:768px) {
    
   
    .about-container { flex-direction: column; text-align: center; }
    .about-text { text-align: center; }
    .steps { flex-direction: column; align-items: center; }
    footer { flex-direction:column; text-align:center; }
    .partners-logos img {
    height: 60px;
    max-width: 120px;
  }
    .hero {
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 60px 20px 180px 20px; 
    aspect-ratio: auto;
    height: auto;
    padding-left: 0;
  }

  .hero-logo {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 240px;
    max-width: 55vw;
  }

  .hero-content {
    text-align: center;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-content .btn {
    font-size: 14px;
    padding: 10px 20px;
  }

  .hero-icons {
    justify-content: center;
  }
  header {
    justify-content: space-between;
    position: relative;
  }

  nav,
  .buy-btn {
    display: none;
  }

  .burger {
    display: block;
  }

  nav.mobile-active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: white;
    z-index: 99;
    padding: 20px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  nav.mobile-active a {
    padding: 14px 20px;
    font-size: 18px;
    border-bottom: 1px solid #eee;
  }

  .buy-btn.mobile-active {
    display: block;
    margin: 20px auto 10px auto;
    background: #fdc12f;
    color: #222;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 12px;
    width: calc(100% - 40px);
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }
  .about-image img {
    max-width: 350px;
    border-radius: 20px;
  }
  .copy-container {
    font-size: 12px;
  }

  #contract-address {
    font-size: 12px;
  }
  .steps {
    flex-direction: column;
    gap: 20px;
  }
  .step-box {
    max-width: 100%;
  }
  .flying-muto {
    position: static !important;
    display: block !important;
    margin: 20px auto !important;
    width: 240px !important;
    max-width: none !important;
    top: auto !important;
    right: auto !important;
  }


  .flying-dollar {
    display: none;
  }
  .muto-bottom {
    width: 160px;
    
  }
  .buy-social-btn {
    font-size: 16px;
    padding: 10px 22px;
  }
}



  

