/* General Styles */
body {
  font-family: 'Comic Neue', cursive;
  background: #1a1a1a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  max-width: 600px;
  width: 100%;
  padding: 20px;
}

h1 {
  font-family: 'Luckiest Guy', cursive;
  font-size: 3rem;
  color: #ff6f61;
  margin-bottom: 0.5rem;
  text-shadow: 2px 2px 0 #000;
}

.tagline {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 2rem;
}

/* Countdown Section */
.countdown-section {
  margin-bottom: 2rem;
}

#countdown {
  font-size: 2rem;
  margin-bottom: 2rem;
}

/* Contract Address Section */
.ca-section {
  position: relative;
  margin-bottom: 2rem;
}

#ca-button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#ca-button:hover {
  background: #ff3b2f;
}

.ca-popup {
  display: none;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  padding: 1rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  z-index: 10;
}

.ca-popup p {
  margin: 0;
  font-size: 0.9rem;
  color: #333;
}

#copy-ca {
  margin-top: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.8rem;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#copy-ca:hover {
  background: #ff3b2f;
}

/* Airdrop Section */
.airdrop-section {
  margin-bottom: 2rem;
}

.airdrop-section h2 {
  font-size: 1.8rem;
  color: #ff6f61;
  margin-bottom: 0.5rem;
}

.airdrop-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

#airdrop-form {
  margin-bottom: 1rem;
}

#airdrop-form input {
  padding: 0.5rem;
  font-size: 1rem;
  border: 2px solid #ff6f61;
  border-radius: 5px;
  margin-right: 0.5rem;
}

#airdrop-form button {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#airdrop-form button:hover {
  background: #ff3b2f;
}

/* Staking Section */
.staking-section {
  margin-bottom: 2rem;
}

.staking-section h2 {
  font-size: 1.8rem;
  color: #ff6f61;
  margin-bottom: 0.5rem;
}

.staking-section p {
  font-size: 1.1rem;
  color: #ccc;
  margin-bottom: 1rem;
}

#learn-staking {
  padding: 0.5rem 1rem;
  font-size: 1rem;
  background: #ff6f61;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

#learn-staking:hover {
  background: #ff3b2f;
}

/* Social Links */
.social-links a {
  color: #ff6f61;
  text-decoration: none;
  margin: 0 0.5rem;
  font-weight: bold;
}

.social-links a:hover {
  text-decoration: underline;
}
