body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: linear-gradient(to right, #0d0e33, #240049);
  color: white;
  overflow-x: hidden;
}

.container {
  max-width: 1000px;
  margin: auto;
  padding: 20px;
}

.banner {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.title {
  font-size: 3rem;
  text-align: center;
}

.tagline {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 20px;
}

.wallet-btn {
  display: block;
  margin: 0 auto;
  padding: 12px 24px;
  background: #9945FF;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

h2 {
  text-align: center;
  margin: 40px 0 20px;
}

ul {
  list-style: none;
  padding: 0;
  text-align: center;
}

.exchanges, .socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.exchanges a, .socials a {
  color: #00ffcc;
  text-decoration: none;
  font-weight: bold;
}

.gallery-wrapper {
  overflow: hidden;
  width: 100%;
}

.gallery {
  display: flex;
  gap: 20px;
  animation: scrollGallery 25s linear infinite;
  width: max-content;
}

.gallery img {
  width: 300px;
  border-radius: 10px;
  transition: transform 0.3s;
}

.gallery img:hover {
  transform: scale(1.05);
}

@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.fade-in {
  animation: fadeIn 1.5s ease-in forwards;
  opacity: 0;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

footer {
  text-align: center;
  margin-top: 50px;
}

.solana-logo {
  height: 20px;
  vertical-align: middle;
  margin-left: 6px;
}

/* === Tambahan untuk Smart Contract Info === */
.contract-box {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 20px auto;
  justify-content: center;
  flex-wrap: wrap;
}

.contract-box input {
  background-color: #1e1e2f;
  color: #00ffcc;
  border: 1px solid #00ffcc;
  border-radius: 6px;
  padding: 10px;
  font-size: 14px;
  width: 320px;
}

.contract-box button {
  background-color: #9945FF;
  color: white;
  border: none;
  border-radius: 6px;
  padding: 10px 20px;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease-in-out;
}

.contract-box button:hover {
  background-color: #7b32cc;
}

/* === Class tambahan untuk memusatkan teks section Smart Contract === */
.center-text {
  text-align: center;
}
.pickmon-detail {
  max-width: 50%;
  height: auto;
  border-radius: 12px;
  margin-top: 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}
