body {
  font-family: 'Poppins', sans-serif;
  background-color: #f0f4f8;
  margin: 0;
  padding: 0;
  color: #333;
}

.section {
  padding: 50px;
  text-align: center;
}

header {
  background-color: #1a1a2e;
  color: #fff;
}

h1, h2 {
  font-family: 'Abril Fatface', cursive;
}

.styled-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

.buy-button {
  padding: 15px 30px;
  font-size: 18px;
  background: linear-gradient(45deg, #1a73e8, #2dcb74);
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
}

.buy-button:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contract-address {
  background-color: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 5px;
  display: inline-block;
  max-width: 80%;
  word-wrap: break-word;
  margin: 20px auto;
}
#roadmap{
  background: darkgrey;
}
.phase{
  text-align: center;
  width: 80%;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.phase img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.meme-slider {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.meme-slider img {
  flex: 0 0 auto;
  width: 25%;
  animation: slide 10s infinite linear;
}

@keyframes slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon {
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  border-radius: 50%;
  background: #1a73e8;
  color: white;
  font-size: 20px;
  text-decoration: none;
  transition: transform 0.3s;
}

.icon:hover {
  transform: scale(1.2);
}

.icon.telegram {
  background: #0088cc;
}

.icon.twitter {
  background: #1da1f2;
}




/* Meme slider styles */
.meme-slider {
  position: relative;
  display: flex;
  overflow: hidden;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
}

.meme-slide {
  min-width: 100%;
  transition: transform 1s ease-in-out;
}

.meme-slider img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}
#contact{
  background: blueviolet;
}