body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(180deg, #3b0066, #1a0033);
  color: white;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: rgba(0,0,0,0.3);
  position: sticky;
  top: 0;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 40px;
  margin-right: 10px;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  font-weight: 600;
}

nav a:hover {
  color: #ffcc00;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 3rem 2rem;
}

.hero-content h1 {
  font-size: 3rem;
  margin: 0;
}

.hero-content h2 {
  font-size: 2rem;
  margin: 1rem 0;
  color: #ffcc00;
}

.hero-img img {
  max-width: 400px;
  border-radius: 12px;
}

#buyNowBtn {
  background: #ff00cc;
  color: white;
  border: none;
  padding: 15px 30px;
  font-size: 1.2rem;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 20px;
  animation: pulse 2s infinite;
  transition: transform 0.3s ease;
}

#buyNowBtn:hover {
  transform: scale(1.1);
  background: #ff33dd;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(255,0,204,0.7); }
  70% { box-shadow: 0 0 0 20px rgba(255,0,204,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,0,204,0); }
}

.about, .tokenomics, .community {
  padding: 2rem;
  text-align: center;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
}

.stats div {
  background: rgba(255,255,255,0.1);
  padding: 1rem;
  border-radius: 8px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: rgba(0,0,0,0.4);
}
