/* Reset & Fonts */
body {
margin: 0;
font-family: ‘Arial Rounded MT Bold’, sans-serif;
background-color: #fffce9;
color: #000000;
}
/* Footer */
footer {
text-align: center;
background-color: #111;
color: white;
padding: 20px;
font-size: 14px;
}
/* Tokenomics */
.tokenomics {
  background-color: #fffce9;
  padding: 60px 20px;
  text-align: center;
}
.tokenomics h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #29bf12;
}
.token-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  max-width: 700px;
  margin: auto;
}
.token-table div {
  background: #29bf12;
  color: #fff;
  padding: 15px 20px;
  border-radius: 8px;
  min-width: 140px;
  text-align: center;
}
.token-table .label {
  display: block;
  font-weight: bold;
}
.token-table .value {
  display: block;
  margin-top: 8px;
  font-size: 18px;
}

/* Roadmap */
.roadmap {
  background-color: #fdfdfd;
  padding: 60px 20px;
}
.roadmap h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 30px;
  color: #000000;
}
.roadmap-list {
  list-style: none;
  max-width: 800px;
  margin: auto;
  padding: 0;
}
.roadmap-list li {
  background: #fffce9;
  border-left: 6px solid #29bf12;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 4px;
}
.roadmap-list li strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
  color: #29bf12;
}
.roadmap-list li p {
  margin: 0;
  font-size: 16px;
  color: #333;
}
/* Header style based on image */
.hero-header {
  position: relative;
  min-height: 100vh;
  background: radial-gradient(circle at top left, #f40000, #ff8325, #b1f9e0);
  background-size: cover;
  background-repeat: no-repeat;
  padding: 20px;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  overflow: hidden;
}

/* Navigation bar */
.nav-bar {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.logo {
  font-weight: bold;
  font-size: 24px;
}
.nav-links {
  display: flex;
  gap: 25px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: #585858;
  font-weight: 600;
}

/* Pixel font heading */
.pixel-text {
  font-size: 48px;
  font-family: 'Press Start 2P', cursive;
  line-height: 1.3;
  color: #000;
  margin-bottom: 20px;
}
@import url('https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap');

.sub-text {
  font-size: 16px;
  margin-bottom: 30px;
}

/* CTA buttons */
.cta-buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
}
.btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease;
}
.btn.primary {
  background: #29bf12;
  color: #fff;
}
.btn.secondary {
  background: #000;
  color: #fff;
}
.btn:hover {
  opacity: 0.9;
}
 {
  font-size: 1.2rem;
  text-align: center;
  animation: pop 0.3s ease;
}
.social-footer {
  text-align: center;
  padding: 20px;
  background-color: #ffffff;
}

.footer-title {
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
  font-size: 18px;
}

.wingz-btn {
  display: inline-block;
  padding: 10px 20px;
  margin: 5px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s ease-in-out;
}

.green-btn {
  background-color: #28a745;
  color: white;
}

.black-btn {
  background-color: #000;
  color: white;
}

.wingz-btn:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.footer-copy {
  margin-top: 15px;
  font-size: 12px;
  color: gray;
}

@keyframes pop {
  0% { transform: scale(0.9); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.corner-chicken {
  position: fixed;
  bottom: 20px;
  left: 20px;
  width: 120px; /* adjust size */
  z-index: 999;
  transition: transform 0.2s ease-out;
  pointer-events: none; /* so clicks pass through */
}
.dancing-chicken {
  display: block;
  margin: 0 auto;
  width: 200px; /* adjust size */
  animation: dance 1s infinite alternate ease-in-out;
}

/* Animation keyframes */
@keyframes dance {
  0% { transform: rotate(-5deg) scale(1); }
  50% { transform: rotate(5deg) scale(1.05); }
  100% { transform: rotate(-5deg) scale(1); }
}
/* === WINGZ Header Link Effects === */
header a {
  position: relative;
  color: white;
  text-decoration: none;
  padding-bottom: 3px;
  transition: 0.3s ease;
}

/* Saucy Glow on hover */
header a:hover {
  color: #ffdd00;
  text-shadow: 0 0 8px #ffdd00, 0 0 12px #ff6600;
}

/* Sauce underline slide */
header a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #ff6600, #ffdd00);
  transition: 0.3s ease;
}

header a:hover::after {
  width: 100%;
}

/* Chicken wiggle */
@keyframes wiggle {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  50% { transform: rotate(-5deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

header a:hover {
  animation: wiggle 0.4s ease;
}
/* ===== Gradient Sauce Shine for $WINGZ ===== */
.brand-text {
  background: linear-gradient(90deg, #ff6600, #ffdd00, #ff6600);
  background-size: 200% auto;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  animation: shine 3s linear infinite;
  font-weight: bold;
}

@keyframes shine {
  to {
    background-position: 200% center;
  }
}