/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', sans-serif;
}

body {
  overflow-x: hidden;
  background: linear-gradient(120deg, #b5651d, #ff9800, #f4d03f, #8b4513);
  background-size: 400% 400%;
  animation: gradientMove 15s ease infinite;
  color: black; /* changed from white to black */
}

/* BACKGROUND ANIMATION */
@keyframes gradientMove {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* HERO SECTION */
.hero {
  text-align: center;
  padding: 120px 20px;
}
.logo {
  width: 220px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255,255,255,0.8);
  animation: popIn 1s ease;
}
@keyframes popIn {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}
.hero h1 {
  font-size: 70px;
  margin-top: 20px;
  text-shadow: 0 0 20px rgba(255,255,255,0.8);
}
.hero p {
  margin-top: 15px;
  font-size: 20px;
}
.buttons {
  margin-top: 30px;
}
a {
  text-decoration: none;
}
.primary, .secondary {
  display: inline-block;
  padding: 14px 28px;
  margin: 8px;
  border-radius: 15px;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}
.primary {
  background: white;
  color: black;
}
.primary:hover {
  transform: scale(1.1);
  box-shadow: 0 0 25px rgba(255,255,255,0.6);
}
.secondary {
  border: 2px solid white;
  color: white;
}
.secondary:hover {
  background: white;
  color: black;
}
.big {
  padding: 18px 40px;
  font-size: 20px;
}

/* CHUCK BOOK SECTION */
.chuck-book {
  text-align: center;
  padding: 100px 20px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  margin: 50px auto;
  max-width: 900px;
}
.chuck-book h2 {
  font-size: 40px;
  margin-bottom: 30px;
}
.book-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
.image-frame {
  width: 400px;
  height: 400px;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(255,255,255,0.5);
}
.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}
.book-container button {
  background: linear-gradient(45deg, gold, orange);
  border: none;
  color: black;
  font-size: 36px;
  padding: 20px 30px;
  border-radius: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.book-container button:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(255,255,0,0.7);
}

/* MEMES SECTION */
.memes {
  padding: 100px 20px;
  text-align: center;
}
.memes h2 {
  font-size: 45px;
  margin-bottom: 40px;
  text-shadow: 0 0 15px rgba(255,255,255,0.7);
}
.cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
}
.card {
  background: rgba(255,255,255,0.3);
  backdrop-filter: blur(10px);
  padding: 25px;
  border-radius: 20px;
  width: 260px;
  font-size: 18px;
  transition: transform 0.3s;
}
.card:hover {
  transform: scale(1.08) translateY(-10px);
  box-shadow: 0 0 25px rgba(255,255,255,0.5);
}

/* TOKENOMICS SECTION */
.tokenomics {
  text-align: center;
  padding: 100px 20px;
}
.tokenomics h2 {
  font-size: 45px;
  margin-bottom: 40px;
}
.token-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
.token-boxes div {
  background: white;
  color: black;
  padding: 20px 30px;
  border-radius: 15px;
  font-weight: bold;
  animation: float 3s infinite ease-in-out;
}
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0); }
}

/* CTA SECTION */
.cta {
  text-align: center;
  padding: 120px 20px;
}
.cta h2 {
  font-size: 50px;
  margin-bottom: 30px;
  text-shadow: 0 0 20px rgba(255,255,255,0.8);
}

/* SOCIAL LINKS */
.social-links a {
  display: inline-block;
  margin: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  background: rgba(255,255,255,0.4);
  transition: 0.3s;
}
.social-links a:hover {
  background: white;
  color: black;
}

/* HOW TO BUY SECTION */
.how-to-buy {
  padding: 100px 20px;
  text-align: center;
  background: rgba(255,255,255,0.1); /* slightly brighter for readability */
  backdrop-filter: blur(10px);
  color: black; /* keep normal text readable */
}

.how-to-buy h2 {
  font-size: 45px;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(0,0,0,0.2);
}

.how-to-buy ol {
  max-width: 700px;
  margin: 0 auto;
  text-align: left;
  font-size: 18px;
  line-height: 2;
}

/* WELCOME TEXT */
.center-text {
  text-align: center;
  font-weight: bold;
}

/* LINKS */
.how-to-buy a {
  color: #007bff; /* blue links */
  font-weight: bold;
  text-decoration: none;
  border-bottom: 2px solid #007bff;
}

.how-to-buy a:hover {
  color: #0056b3;
  border-bottom: 2px solid #0056b3;
}

/* DISCLAIMER SECTION */
.disclaimer {
  padding: 60px 20px;
  text-align: center;
  background: rgba(255,0,0,0.05);
  color: #fff5e6;
  font-size: 16px;
  line-height: 1.8;
  border-top: 2px solid rgba(255,255,255,0.2);
}
.disclaimer h2 {
  font-size: 30px;
  margin-bottom: 15px;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px 20px;
  font-size: 16px;
  opacity: 0.8;
}