
    body {
      margin: 0;
      font-family: 'Fredoka', sans-serif;
      background: #2B8755;
      display: flex;
      flex-direction: column;
      align-items: center;
      overflow-y: scroll;
      overflow-x: hidden; /* Prevent horizontal scrolling */
      width: 100%;
    }
    
    #particles-js {
    position: fixed;
    width: 100%;
    height: 100%;
    z-index: -1;
    top: 0;
    left: 0;
  }
    /* Navbar */
    nav {
      width: 90%;
      max-width: 1000px;
      margin-top: 30px;
      padding: 20px 20px;
      background: rgb(255, 255, 255);
      border: 5px solid rgb(0, 0, 0);
      border-radius: 50px;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 1000;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 3px solid black;
  animation: tilt 2s infinite ease-in-out;
}

@keyframes tilt {
  0% { transform: rotate(-5deg); }
  50% { transform: rotate(5deg); }
  100% { transform: rotate(-5deg); }
}



    nav ul {
      list-style: none;
      display: flex;
      gap: 40px;
      margin: 0;
      padding: 0;
      justify-content: center;
      width: 100%;
    }

    nav ul li {
      color: rgb(0, 0, 0);
      font-weight: 600;
      font-size: 23px;
      cursor: pointer;
      transition: color 0.3s;
    }

    nav ul li:hover {
      color: #2B8755;
    }

    .hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  height: 4px;
  background-color: #2B8755;
  transition: all 0.3s ease-in-out;
  transform-origin: center;
}

/* Active state - turn into "X" */
.hamburger.active div:nth-child(1) {
  transform: rotate(45deg) translateY(10px);
}

.hamburger.active div:nth-child(2) {
  opacity: 0;
}

.hamburger.active div:nth-child(3) {
  transform: rotate(-45deg) translateY(-10px);
}


    /* Slide animation keyframes */
@keyframes slideInFromLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideInFromRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.mobile-menu {
  display: none;
  position: fixed;
  margin-top: 60px;
  top: 70px;
  left: 5%; /* Add left spacing */
  width: 90%;
  background-color: #ffffff;
  border: 5px solid #000000;
  border-radius: 12px;
  box-shadow: none;
  padding: 20px;
  z-index: 2000;
  max-width: 100vw; /* Ensure it never exceeds viewport width */
  box-sizing: border-box;
}



.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* List style */
.mobile-menu ul li {
  color: #000000;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-menu ul li:hover {
  color: #fc8105; /* contrast color on hover */
}


/* Show and animate the menu */
.mobile-menu.active {
  display: block;
  animation: slideInFromLeft 0.5s ease-out;
}

/* Optional: If you want alternate direction randomly or based on a class */
.mobile-menu.active.from-right {
  animation: slideInFromRight 0.5s ease-out;
}


    .content {
      margin-top: 10px;
      text-align: center;
      padding: 20px;
    }

    .main-image {
      width: 300px;
      border-radius: 20px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0);
    }

    .title {
      margin-top: 1px;
      font-size: 56px;
      font-weight: bold;
      color: #000000;
    }

    .logo-image {
  margin-top: 0;
  max-width: 90%;
  width: 500px;
  height: auto;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/* Optional: Media query for small screens */
@media (max-width: 600px) {
  .logo-image {
    width: 80vw;
    max-width: 100%;
  }
}


@media (max-width: 768px) {
    nav {
      justify-content: space-between;
      padding: 15px 20px;
    }
  
    nav ul {
      display: none;
    }
  
    .logo {
      display: flex;
    }
  
    .hamburger {
      display: flex;
    }
  
    .content {
      margin-top: 10px;
    }
  }
  

  @media (min-width: 769px) {
    .logo {
      display: flex;
    }
  
    .hamburger {
      display: none;
    }
  
    nav {
      justify-content: center; /* ✅ only on large screens */
    }
  
    nav ul {
      display: flex;
      justify-content: center;
    }
  }
  
    .social-section {
  background: #ffffff;
  width: 100vw; /* Use viewport width to span the entire width */
  padding: 100px 0; /* Only top and bottom padding */
  margin-top: 60px;
  box-sizing: border-box; /* Ensure padding doesn't affect width */
  position: relative; /* Ensure correct positioning */
}

@media (max-width: 768px) {
  .social-section {
    padding: 50px 0; /* Slightly less padding on mobile */
  }
}

    .official-links {
      max-width: 1000px;
      margin: 0 auto;
      text-align: center;
    }

    .official-links h3 {
  font-size: 22px;
  font-weight: 600;
  color: #000;
  margin-top: 30px;      /* Added top margin */
  margin-bottom: 25px;
}


    .social-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px; /* Add your desired margin here */
}


    .social-icons a img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: #2B8755;
      padding: 5px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    
    }

    .social-icons a img:hover {
      transform: scale(1.1);
    }

    .ticker-wrapper {
      width: 100%;
      overflow: hidden;
      background: #111216;
    }

    .ticker {
      display: inline-block;
      white-space: nowrap;
      animation: ticker-scroll 20s linear infinite;
    }

    .ticker span {
      display: inline-block;
      font-weight: bold;
      font-size: 16px;
      color: white;
      letter-spacing: 1px;
    }

    @keyframes ticker-scroll {
      0% { transform: translateX(100%); }
      100% { transform: translateX(-100%); }
    }


    @keyframes slideFromLeft {
  0% {
    transform: translateX(-100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideFromRight {
  0% {
    transform: translateX(100vw);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.cta-button {
  padding: 15px 24px;
  text-decoration: none;       /* Removes underline */
  font-size: 16px;
  font-weight: 600;
  background-color: #155833;
  color: #fff;
  border: 3px solid #fff;
  border-radius: 10px;
  cursor: pointer;
  opacity: 0; /* start hidden */
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.cta-left {
  animation: slideFromLeft 1s ease-out forwards;
  animation-delay: 0.2s;
}

.cta-right {
  animation: slideFromRight 1s ease-out forwards;
  animation-delay: 0.2s;
}


.cta-button:hover {
  background-color: #222;
  border-color: #ffffff; /* Optional lighter border on hover */
}


.button-group {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 16px; /* Slight space between buttons */
}
/* Bounce Animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}

/* Apply to logo */
.logo-image.bounce {
  animation: bounce 2s infinite;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.pawfect-section {
  width: 100vw;
  height: 60vh; /* Adjust height as needed */
  background: #0e0f13;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  padding-top: 40px; /* Adjust top padding as needed */
  padding-bottom: 40px; /* Adjust bottom padding as needed */
  position: relative;
  z-index: 1;
}


@keyframes slideInFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.content-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  width: 100%;
  flex-wrap: wrap;
  gap: 20px;
  border: 4px solid #ffffff;
  padding: 20px;
  border-radius: 16px;
  position: relative;

  /* Animation */
  animation: slideInFromLeft 1s ease-out forwards;
}


@keyframes slideInFromRight {
  0% {
    transform: translateX(200%);
    opacity: 0;
  }
  100% {
    transform: translateX(80%);
    opacity: 1;
  }
}

.top-right-image { 
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(80%);
  z-index: 10;

  animation: slideInFromRight 1s ease-out forwards;
}

.top-right-image img {
  width: 350px;
  height: auto;
}

/* 🔧 Fix for 768px and below screens */
@media (max-width: 768px) {
  .top-right-image {
    left: -90px; /* Move further to the left */
    top: -60px;  /* Slightly lower the image */
    transform: none;
    position: absolute;
  }

  .top-right-image img {
    width: 200px;
    height: auto;
    transform: scaleX(-1);
  }
}



/* 📱 Mobile-specific height adjustment */
@media (max-width: 768px) {
  .pawfect-section {
    height: 80vh; /* Adjust to desired mobile height */
  }
}



/* Mobile Styles */
@media screen and (max-width: 768px) {
  .content-wrapper {
    padding: auto; /* Padding to avoid touching the screen sides */
    margin: 30px 30px; /* Add a margin to avoid touching screen sides */
  }
}


.left-content {
  flex: 1;
  min-width: 280px;
}

.tagline {
  font-weight: bold;
  font-size: 14px;
  color: #f1f1f1;
  margin-bottom: 10px;
}

.main-title {
  font-size: 48px;
  margin: 0 0 30px 0;
}

.buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .buttons {
    display: flex;
    justify-content: center; /* Center horizontally */
    align-items: center;     /* Center vertically (optional, if height is defined) */
    gap: 0px;
    flex-wrap: wrap;
  }
}

.btn {
  display: inline-block;
  padding: 15px 25px;
  border-radius: 50px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  transition: 0.3s;
}

.uniswap {
  background: white;
  color: #ff007a;
}

.coinbase {
  background: white;
  color: #0052ff;
}

/* Hover effect for the buttons */
.uniswap:hover, .coinbase:hover {
  background: #2B8755;
  color: white;
  transform: scale(1.05); /* Slightly enlarge on hover */
}

.right-content {
  flex: 1;
  min-width: 280px;
  text-align: right;
}

.contract-label {
  font-weight: bold;
  margin-bottom: 10px;
}

.contract-box {
  background: #1a1b1f;
  padding: 15px 20px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: monospace;
  overflow-x: auto;
}

.copy-btn {
  background: transparent;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 18px;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .content-wrapper {
    flex-direction: column;
    text-align: center;
  }

  .right-content {
    text-align: center;
  }

  .contract-box {
    justify-content: center;
    gap: 10px;
  }
}

.btn-logo {
  height: 24px;
  width: 24px;
  margin-right: 10px;
  vertical-align: middle;
}

.btn {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 10px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  margin: 10px;
}

.uniswap {
  background-color: #55D391;
}

.coinbase {
  background-color: #AB9FF2;
}


.dapp-button a {
  color: white;
  text-decoration: none;
  font-size: 16px;
  background-color: #2B8755;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.dapp-button a:hover {
  background-color: #0a0a0a;
}

.tokenomics-section {
  display: flex;
  background-color: #0e0f13;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 10%;
  padding-top: 20px;
  padding-bottom: 50px;
  width: 100%; /* Ensure the section takes the full width */
  height: 600px; /* Adjusted height since fewer cards */
  overflow: hidden; /* Prevent content overflow */
}

@media (max-width: 768px) {
  .tokenomics-section {
    padding: 0 5%;
    height: auto;
  }
}

@media (max-width: 480px) {
  .tokenomics-section {
    padding: 0 3%;
    height: auto;
  }
}

.tokenomics-title {
  color: #ffffff;
  font-size: 3rem;
  margin-top: 30px;
  margin-bottom: 20px;
  font-weight: bold;
}

.tokenomics-subtitle {
  color: #ffffff;
  margin-bottom: 50px;
  font-size: 1.8rem;
}

.tokenomics-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 900px;
}

.chart-container {
  flex: 1 1 40%;
  min-width: 300px;
  max-width: 400px;
  height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  margin-top: 30px;
  animation: fadeInChart 1s forwards;
}

.tokenomics-grid {
  flex: 1 1 40%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.tokenomics-card {
  background-color: #0e0f13;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s forwards;
  border: 4px solid #ffffff;
  text-align: center;
  max-width: 300px;
}

.tokenomics-card:hover {
  transform: translateY(-5px);
}

.tokenomics-card h3 {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.tokenomics-card p {
  font-size: 1rem;
  color: #cbd5e1;
}

/* Animation for the chart container */
@keyframes fadeInChart {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 768px) {
  .tokenomics-container {
    flex-direction: column;
    align-items: center;
  }

  .chart-container {
    width: 100%;
    height: 250px;
  }

  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
    width: 100%;
    padding: 0;
  }
}


    /* Marquee Effect */
.marquee-top, .marquee-bottom {
  position: absolute;
  width: 100%;
  background-color: #0d0e12; /* Dark background for visibility */
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  white-space: nowrap;
  overflow: hidden;
}

.marquee-top {
  top: 0;
}

.marquee-bottom {
  bottom: 0;
}

/* Marquee Animation */
.marquee-top p, .marquee-bottom p {
  display: inline-block;
  animation: marquee-top 10s linear infinite;
}

/* Marquee animation for smooth scrolling (Top - Right to Left) */
@keyframes marquee-top {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* Marquee animation for smooth scrolling (Bottom - Left to Right) */
.marquee-bottom p {
  animation: marquee-bottom 10s linear infinite;
}

@keyframes marquee-bottom {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

.subtitle {
  font-size: 1.1rem;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.3; /* Reduced the line-height for smaller spacing */
  max-width: 800px;
  margin: 20px auto 0;
  text-align: center;
}


/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
  .title {
    font-size: 2rem;
  }

  .subtitle {
    font-size: 1.2rem;
  }
}

.custom-footer {
  width: 100%;
  overflow: hidden;
  font-family: 'Fredoka', sans-serif;
}

/* Top blue part */
.footer-top {
  background-color: #0d0e12;
  height: 80px;
  border-bottom: 5px solid #ffffff; /* black line */
}

/* Bottom beige part */
.footer-bottom {
  background-color: #2B8755;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 30px 40px;
  position: relative;
  min-height: 180px;
}

/* Left side logo and text */
.footer-left {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  color: #000000;
}


.footer-logo {
  width: 20vw; /* 20% of viewport width */
  max-width: 200px; /* Prevent it from getting too big */
  min-width: 80px;  /* Prevent it from getting too small */
  margin-bottom: 10px;
}

.footer-tagline {
  font-size: 14px;
  font-weight: 400;
}

.footer-right .footer-image {
  max-height: 180px; /* Limits the height of the image */
  position: absolute; /* Positions the image relative to the nearest positioned ancestor */
  right: 40px; /* Positions the image 40px from the right */
  bottom: 30px; /* Positions the image 30px from the bottom */
  z-index: 9999; /* Ensures the image floats above all other elements */
  animation: bounce 2s infinite ease-in-out; /* Applies a bouncing animation */
  pointer-events: none; /* Prevents the image from blocking clicks on underlying elements */
}


.footer-bottom {
  position: relative; /* Needed for absolute child positioning */
}


@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px); /* Bounce height */
  }
}

.roadmap-wide {
  width: 100%;
  padding: 150px 60px;
  padding-top: 90px;
  padding-bottom: 180px;
  background-color: #2B8755; /* Roadmap Section Background */
  color: white;
  min-height: 700px;
}


/* Roadmap Title Styling */
.roadmap-title {
  text-align: center;
  font-size: 3.5rem;
  margin-bottom: 50px;
  color: #ffffff;
}

/* Roadmap Container */
.roadmap-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative; /* Needed for connector lines */
}

/* Base Phase Box */
.roadmap-phase {
  position: relative;
  padding: 50px;
  border-radius: 20px;
  width: 280px;
  flex-grow: 1;
  transition: transform 0.3s ease;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  color: #fff;
}

/* Unique Background Colors */
.roadmap-phase:nth-child(1) {
  background: linear-gradient(135deg, #ff6f61, #ff9472); /* Coral shades */
}

.roadmap-phase:nth-child(2) {
  background: linear-gradient(135deg, #42a5f5, #64b5f6); /* Blue shades */
}

.roadmap-phase:nth-child(3) {
  background: linear-gradient(135deg, #66bb6a, #81c784); /* Green shades */
}

.roadmap-phase:nth-child(4) {
  background: linear-gradient(135deg, #ab47bc, #ce93d8); /* Purple shades */
}

/* Hover Effect */
.roadmap-phase:hover {
  transform: translateY(-10px);
}

/* Heading inside Phase */
.roadmap-phase h3 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

/* Bullet Points */
.roadmap-phase ul {
  list-style: disc;
  padding-left: 20px;
}

/* Horizontal Line Connector (Desktop) */
.roadmap-phase::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  height: 7px;
  width: 50px;
  background: white;
  transform: translateY(-50%);
}

/* Don't show line after last box */
.roadmap-phase:last-child::after {
  display: none;
}

/* Responsive: Vertical Line Connector on Mobile */
@media (max-width: 768px) {
  .roadmap-container {
    flex-direction: column;
    align-items: center;
  }

  .roadmap-phase {
    width: 90%;
  }

  .roadmap-phase::after {
    top: 100%;
    left: 50%;
    width: 7px;
    height: 50px;
    background: white;
    transform: translateX(-50%);
  }

  .roadmap-phase:last-child::after {
    display: none;
  }
}



.about-section {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
  padding: 20px 20px;
  text-align: center;
}

.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.about-container h2 {
  font-size: 46px;
  margin-bottom: 20px;
  color: #000000;
}

.about-container p {
  font-size: 18px;
  line-height: 1.7;
  color: #000000;
  margin-bottom: 15px;
}

.meme-gallery-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.meme-gallery-bg {
  position: relative;
  background: url('bg.svg') center center/cover no-repeat;
  width: 100%;
  height: 100%;
  padding: 60px 20px;
}

.meme-gallery-bg .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6); /* Black overlay with 60% opacity */
  z-index: 1;
}

.meme-gallery-content {
  position: relative;
  z-index: 2;
  color: white; /* Ensure text is visible */
  text-align: center;
}


  .meme-gallery-title {
    color: #fff;
    font-size: 36px;
    margin-bottom: 40px;
    font-family: 'Fredoka', sans-serif;
  }

  /* Center wrapper to keep the scrollable container aligned */
  .meme-gallery-wrapper {
    display: flex;
    justify-content: center;
    overflow: hidden;
  }

  .meme-gallery-container {
    display: flex;
    justify-content: center; /* Center content in desktop */
    align-items: center;
    gap: 40px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    padding: 40px 20px;
    max-width: 100%;
    cursor: grab;
    -webkit-overflow-scrolling: touch;
  }

  .meme-gallery-container::-webkit-scrollbar {
    display: none;
  }

  .meme-gallery-container img {
    width: 430px;
    height: auto;
    border-radius: 20px;
    flex-shrink: 0;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
  }

  .meme-gallery-container img {
  border: 3px solid transparent;
  border-radius: 8px;
  transition: border 0.3s ease;
}

.meme-gallery-container img:hover {
  border: 3px solid white; /* Or any color you want */
}


  .see-more-container {
    text-align: center;
    margin-top: 20px;
  }

  .see-more-btn {
    background-color: #fff;
    color: #000;
    border: 5px solid #000; /* Black border by default */
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Fredoka', sans-serif; /* Apply Fredoka font */
  }

  .see-more-btn:hover {
    background-color: #161616;
    color: #fff;
    border-color: #fff; /* White border on hover */
  }


  /* Responsive for mobile */
@media (max-width: 768px) {
  .meme-gallery-container {
    gap: 30px;
    justify-content: flex-start;
    padding: 20px 10px;
  }

  .meme-gallery-container img {
    width: 80vw; /* slightly smaller than before */
  }
}


    .meme-gallery-title {
      font-size: 28px;
    }

    .see-more-btn {
      font-size: 14px;
      padding: 10px 20px;
    }
  }
.copy-btn svg {
  width: 24px;
  height: 24px;
  color: #ffffff; /* or #fff depending on background */
}

.tax-logo {
  width: 30px; /* Adjust width */
  height: auto; /* Keep aspect ratio */
  margin-right: 8px; /* Space between logo and text */
  vertical-align: middle; /* Align the logo with the text */
}

.powered-by {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px; /* space between elements */
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff; /* white text */
}

.bsc-logo {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

ul li a {
  color: black;
  text-decoration: none;
  font-weight: 600; /* Optional: bold look */
  font-family: 'Fredoka', sans-serif; /* or your custom font */
}

/* Optional: Add hover style */
ul li a:hover {
  color: #2B8755; /* Or keep it black if you don’t want any change */
}

.burn-card {
  background: linear-gradient(135deg, #ff5722, #ff7043); /* Deep orange */
}
.tax-card {
  background: linear-gradient(135deg, #f9a825, #fdd835); /* Golden yellow */
}
.staking-card {
  background: linear-gradient(135deg, #43a047, #66bb6a); /* Green */
}
.cz-card {
  background: linear-gradient(135deg, #1e88e5, #42a5f5); /* Blue */
}
.liquidity-card {
  background: linear-gradient(135deg, #8e24aa, #ba68c8); /* Purple */
}
