/* Make all text bold */
body, h1, h2, h3, h4, h5, h6, p, li, a, footer {
  font-weight: bold;
}

/* Base styles */
body {
  margin: 0;
  font-family: 'Comic Sans MS', cursive, sans-serif;
  background: linear-gradient(135deg, #ffd700, #222);
  color: white;
  text-align: center;
}

/* Hero section */
.hero {
  padding: 60px 20px;
  animation: fadeIn 2s ease-in-out;
}

.logo {
  width: 250px;
  border-radius: 50%;
  animation: bounce 3s infinite;
}

.title {
  font-size: 3em;
  margin: 20px 0;
  animation: slideDown 1.5s ease;
}

.tagline {
  font-size: 1.5em;
  margin-bottom: 30px;
  animation: fadeInUp 2s ease;
}

/* Buttons */
.buttons .cta {
  display: inline-block;
  margin: 10px;
  padding: 15px 30px;
  background: #00ff99;
  color: black;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.2em;
  transition: transform 0.3s ease, background 0.3s ease;
}

.buttons .cta:hover {
  transform: scale(1.1);
  background: #ff6600;
}

.buttons .pumpfun {
  background: #ff0066; /* special color for PumpFun */
  color: white;
}

.buttons .pumpfun:hover {
  background: #ffd700;
  color: black;
}

/* Sections */
section {
  padding: 40px 20px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 1s ease;
}

section h2 {
  font-size: 2em;
  margin-bottom: 20px;
}

section p, section ol {
  font-size: 1.2em;
  line-height: 1.6;
}

/* Contract Address Box */
.ca-box {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  border: 2px solid #ffd700;
  border-radius: 10px;
  padding: 10px 20px;
}

.ca-box code {
  color: #00ff99;
  margin-right: 15px;
  font-size: 1.1em;
}

.ca-box button {
  background: #ff6600;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.ca-box button:hover {
  transform: scale(1.1);
  background: #00ff99;
  color: black;
}

/* Footer */
footer {
  background: rgba(0,0,0,0.5);
  padding: 20px;
  margin-top: 40px;
  font-size: 0.9em;
}

/* Animations */
@keyframes fadeIn {
  from {opacity: 0;}
  to {opacity: 1;}
}

@keyframes fadeInUp {
  from {opacity: 0; transform: translateY(30px);}
  to {opacity: 1; transform: translateY(0);}
}

@keyframes slideDown {
  from {transform: translateY(-50px); opacity: 0;}
  to {transform: translateY(0); opacity: 1;}
}

@keyframes bounce {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-20px);}
}
