/* === General Styles === */
body {
  background: linear-gradient(to right, #0f0c29, #302b63, #24243e);
  color: white;
  font-family: "Trebuchet MS", sans-serif;
  text-align: center;
  padding: 20px;
  margin: 0;
}

/* === Logo === */
img {
  border-radius: 50%;
  animation: bounce 2s infinite;
  margin-top: 20px;
  width: 150px;
  height: 150px;
  object-fit: cover;
}

/* === Headings === */
h1 {
  font-size: 48px;
  margin-top: 10px;
  color: #fff;
}

h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #e0e0ff;
}

/* === Paragraph === */
p {
  max-width: 600px;
  margin: 20px auto;
  font-size: 18px;
  line-height: 1.6;
}

/* === Social Links: Brand Color Version === */
a {
  display: inline-block;
  font-size: 20px;
  border-radius: 10px;
  padding: 12px 20px;
  text-decoration: none;
  margin: 10px;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

a i {
  margin-right: 8px;
}

/* Telegram */
a.telegram {
  background-color: #229ed9;
  color: white;
  box-shadow: 0 4px 8px rgba(34, 158, 217, 0.4);
}

a.telegram:hover {
  background-color: #1c8dbd;
  transform: scale(1.05);
}

a.Pump {
  background-color: #22d93a;
  color: white;
  box-shadow: 0 4px 8px rgba(34, 158, 217, 0.4);
}

a.Pump:hover {
  background-color: #22d94a;
  transform: scale(1.05);
}

/* Twitter (X) */
a.twitter {
  background-color: #000;
  color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}

a.twitter:hover {
  background-color: #222;
  transform: scale(1.05);
}

/* === Logo Animation === */
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
