html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
  }
  canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind all content */
    pointer-events: none; /* Allow interactions with underlying elements */
    background-color: #ffffff;
  }
  .top-bar {
    /* Center it and give it a pill shape */
    max-width: 1200px;
    margin: 2rem auto 1rem;
    margin-bottom: -50px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 9999px;  /* Large radius for a fully rounded look */
    border: 4px solid rgb(0, 0, 0);
    background-color: #ffffff; /* White background */
    box-shadow: 3px 5px 10px rgb(0, 0, 0); /* Light drop shadow */
  }

  
  .project-name {
    font-size: 1.2rem;
    font-weight: 800;
    color: #000000; /* Adjust to your preferred brand color */
    font-size: 2rem;
    padding-left: 1rem;
    font-family: 'bold', sans-serif;

  }
  
  .socials a {
    display: inline-flex;          /* allows centering the img */
    align-items: center;
    justify-content: center;
    width: 44px;                   /* same width & height makes a circle */
    height: 44px;
    margin-left: 1rem;
    border: 2px solid black;
    border-radius: 50%;
    transition: background-color 0.2s ease;
    box-shadow: 2px 3px 5px rgb(0, 0, 0);
    background-color: white;
  }
  
  /* If you want a hover effect */
  .socials a:hover {
    background-color: #d8d5d5;     /* or your brand color */
  }
  
  /* The icon itself can be smaller than 44px to have some breathing room */
  .socials a img {
    width: 24px;  
    height: 24px;
    display: block;               /* or inline-block */
  }

  main {
    text-align: center;
    padding: 2rem 1rem;
  }
  
  .dog-image {
    max-width: 500px;
    height: auto;
    margin: 0 auto 0rem;
    display: block;
    translate: 12px 0px;
  }
  
  .ticker {
    font-size: 2.5rem;
    margin-top: 4rem;
    margin-bottom: -1rem;
    color: #000000; /* brand color */
    font-weight: 800;
    font-family: sans-serif;
  }
  
  .tagline {
    font-size: 1.2rem;
    color: #242424;
    font-weight: bold;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    translate: 14px 0;
  }

  .contract-bar {
    max-width: 650px;
    margin: 0 auto 2rem;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    border-radius: 9999px;
    background-color: #ffffff;
    border: 3px solid rgb(0, 0, 0);
    box-shadow: 3px 5px 10px rgb(0, 0, 0);
  }
  
  .contract-label {
    font-weight: 800;
    margin-right: 1rem;
    font-family: sans-serif, 'bold';
    color: rgb(0, 0, 0)
  }
  
  .address-container {
    display: flex;
    align-items: center;
    flex: 1; /* Let the input stretch */
    font-weight: 700;
  }
  
  #contract-address {
    flex: 1;
    padding: 0.4rem 0.6rem;
    border: none;
    background: transparent;
    font-size: 0.95rem;
    color: #222222;
    outline: none;
    font-weight: bold;
  }
  
  #copy-btn {
    background: none;
    border: none;
    cursor: pointer;
  }
  
  #copy-btn img {
    width: 20px;
    height: 20px;
    display: block;
    fill: #ffffff;

  }

  /* Roadmap Section Container */
.roadmap-section {
  margin-top: 16rem;
  text-align: center;
  min-height: 50rem;
}

/* Roadmap Title */
.roadmap-title {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #000000;
  font-weight: 800;
  font-family: sans-serif, 'bold';    /* match your existing font style */
}

/* Container that holds frogs + the phases list */
.roadmap-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap; /* helps responsiveness on smaller screens */

}

/* Frog images */
.frog img {
  max-width: 420px; 
  margin-inline:auto;/* adjust to your needs */
  height: auto;
}

/* Middle bullet list container */
.roadmap-phases {
  background-color: rgba(0, 0, 0, 0.151);
  padding: 1rem;
  border-radius: 8px;
  min-width: 20%;
  aspect-ratio: 5/2;
  display: flex;  
  align-items: center;
  justify-content: center;
  column-gap: 1rem;
  border: 2px solid rgb(0, 0, 0);
  box-shadow: 3px 5px 10px rgb(0, 0, 0); /* Light drop shadow */
}

/* The bullet list itself */
.roadmap-phases ul {
  list-style: none;
  margin: 0;
  margin-block: px;
  padding: 0;
  color: #000000;
  font-size: 2rem;
  text-align: left;  /* or center, depending on preference */
  font-family: 'Gill Sans', Calibri;
  font-style: 'cursive';
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  
}

/* Meme Section Styling */
.meme-section { /* Füllt ungefähr die Bildschirmhöhe */
  background-color: #201d1d00; /* Passt zum bestehenden dunklen Hintergrund */
  text-align: center;
  color: #000000;
  padding-bottom: 30px;
}

.meme-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: sans-serif, 'bold';
  height: 10%;
}

.meme-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 Spalten */
  grid-auto-rows: 1fr;
  gap: 3rem;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  
}

.meme-card {
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #000000;
  border-radius: 8px;
  overflow: hidden;
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 30px;
  box-shadow: 3px 5px 10px rgb(0, 0, 0); /* Light drop shadow */
}

.meme-card img{
  width: 90%;              /* Bildbreite relativ zur Karte */
  max-height: 90%;         /* Bild nimmt maximal 50% der Kartenhöhe ein */
  object-fit: cover;       /* Sorgt dafür, dass das Bild gut skaliert */
  margin-bottom: 0.5rem;
  border-radius: 4px;
}


#icontext img{
  width: 30px;
}


.meme-card h3 {
  font-size: 1.5rem;
  font-family: sans-serif, 'bold';
  font-weight: 700;
  margin-block: 4px;
  padding : 0;
}

.meme-card p {
  font-size: 1rem;
  font-family: sans-serif, 'bold';
  font-weight: 500;
  margin: 0;
  padding : 0;
}

.copy-popup {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-family: sans-serif, 'bold';
  padding: 0.5rem 1rem;
  border-radius: 5px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1000;
}

.copy-popup.show {
  opacity: 1;
}

/* How to Buy Section Styles */
.buy-section {
  text-align: center;
  padding: 4rem 1rem;
  background-color: #35000000;
}

.buy-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 2rem;
  font-family: sans-serif, 'bold';
  color: #000;
}

.buy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.buy-card {
  background-color: rgba(0, 0, 0, 0.1);
  border: 2px solid #000;
  border-radius: 8px;
  padding: 1rem;
  box-shadow: 3px 5px 10px rgb(0, 0, 0);
  height: 300px;
}

.buy-card h3 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  font-family: sans-serif, 'bold';
}

.buy-card p {
  font-size: 1rem;
  margin-bottom: 1rem;
  font-family: sans-serif;
}

.buy-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.buy-logos img {
  width: 50px;
  height: 50px;
  margin-inline: 20px;
  border: 2px solid black;
  border-radius: 50%;
  box-shadow: 2px 3px 8px rgb(0, 0, 0);
}

.marquee-container {
  width: 100%;
  margin: auto;
  overflow: hidden;         /* Hide overflowing text */
  border-top: 1px solid black;
  border-bottom: 1px solid black;
  white-space: nowrap;      /* Keep text on one line */
  background-color: white;
  transform: translateY(5px);
}

.marquee-text {
  display: inline-block;
  /* no need for padding-left if we do a seamless scroll */
  animation: marquee 15s linear infinite;
  font-family: sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0%);
  }
  100% {
    /* Move left by 50% of total width, since we doubled the text */
    transform: translateX(-50%);
  }
}