body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: url("background.gif") no-repeat center center fixed;
  background-size: cover;
  color: white;
  text-align: center;
}

.site-title {
  margin-top: 20px;
  font-family: 'Rubik', sans-serif;
  font-weight: 500;
  font-size: 1.2em;
}

.logo {
  font-size: 3rem;
  margin: 10px 0;
}

.flipper-img {
  width: 150px;
  height: auto;
  margin: 10px;
}

.token-name {
  font-size: 1.5rem;
  margin-top: 0;
}

.hero-description {
  font-size: 1.2rem;
}

.countdown {
  font-weight: bold;
  color: #00ffea;
}

.buy-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.buy-button.disabled {
  background: #444;
  color: white;
  opacity: 0.5;
  border: none;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: bold;
  cursor: not-allowed;
}

.section-title {
  font-size: 28px;
  margin-bottom: 10px;
}

.meme-gallery {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  padding: 10px;
}

.carousel-wrapper {
  width: 300px;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease;
  gap: 10px;
}

.meme {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  margin: 0 10px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}



.arrow {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: white;
  padding: 5px 10px;
  border-radius: 10px;
}

.footer {
  margin-top: 50px;
  font-size: 0.9em;
}


/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 60px;
  left: 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}
.mobile-menu button {
  background: dodgerblue;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 8px;
  font-weight: bold;
}

.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

@media (max-width: 600px) {
  .logo { font-size: 2rem; }
  .carousel-wrapper { width: 200px; }
  .meme { max-width: 200px; }
  .buy-links {
    flex-direction: column;
    align-items: center;
  }
}
/* Burger menu */
.burger-menu {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 20;
}

#burger-icon {
  font-size: 30px;
  color: white;
  cursor: pointer;
  user-select: none;
}

#burger-links {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#burger-links.hidden {
  display: none;
}

.menu-btn {
  background-color: #00aaff; /* Dolphin blue */
  color: white;               /* White text */
  padding: 10px 16px;
  border: none;
  border-radius: 5px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.menu-btn:hover {
  background-color: #008ecc; /* Slightly darker on hover */
}

.menu-btn.disabled {
  opacity: 0.5;
  pointer-events: none;
}
#tokenomics-section {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(0, 170, 255, 0.1);
  border-top: 2px solid #00aaff;
}
#tokenomics-section1 {
  margin-top: 20px;
  padding: 20px;
  background-color: rgba(0, 170, 255, 0.1);
  border-top: 2px solid #00aaff;
}
.tokenomics-image-placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 40px;
  border: 2px dashed #00aaff;
  margin-top: 10px;
  border-radius: 10px;
}
/* Folding Tokenomics */
#tokenomics-section {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  background-color: rgba(0, 170, 255, 0.05);
  margin: 20px auto;
  border-radius: 10px;
  width: 90%;
}

#tokenomics-section.open {
  max-height: 1000px; /* enough to show the image */
}

.tokenomics-title {
  color: white;
  text-align: center;
  margin-top: 10px;
}

.tokenomics-img-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.tokenomics-img {
  width: 90%;
  max-width: 400px;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 170, 255, 0.2);
}
.menu-container {
  border: none;
  background-color: transparent;
  box-shadow: none;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.menu-container::before,
.menu-container::after {
  display: none;
}
.menu-container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: auto;
  padding: 20px;
}
.moonshot-banner {
  display: block;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.5); /* semi-transparent dark bg */
  color: #d4ff00; /* bright greenish yellow */
  font-size: 1.4rem;
  font-weight: bold;
  padding: 15px 20px;
  margin: 20px auto;
  border-radius: 12px;
  width: fit-content;
  max-width: 90%;
  text-decoration: none;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.moonshot-banner:hover {
  background-color: rgba(0, 0, 0, 0.7);
  transform: scale(1.02);
}
#tokenomics-section img {
  max-width: 300px;   /* or the same value as your other image */
  width: 100%;
  height: auto;
  margin-top: 10px;
  border-radius: 10px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

