
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background-color: #0c1222;
  color: #f9e4bc;
  text-align: center;
}

}
.clouds {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: transparent; /* Ensure it's not hidden */
}
.cloud {
  position: absolute;
  background: rgba(255, 255, 255, 0.08); /* more visible */
  border-radius: 50%;
  filter: blur(60px);
  animation: floatClouds 60s linear infinite;
  will-change: transform;
}



.cloud1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: -20%;
  animation-delay: 0s;
}

.cloud2 {
  width: 400px;
  height: 400px;
  top: 40%;
  left: -30%;
  animation-delay: 10s;
}

.cloud3 {
  width: 350px;
  height: 350px;
  top: 70%;
  left: -25%;
  animation-delay: 20s;
}

@keyframes floatClouds {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(200%);
  }
}

main {
  padding: 40px 20px;
}

h1 {
  font-size: 2.5rem;
  color: #f0c060;
  margin-bottom: 0.5rem;
}

.subtitle {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.charlie-img {
  width: 400px;
  max-width: 100%;
  margin: 0 auto 1.5rem;
  display: block;
  animation: float 3s ease-in-out infinite, flicker 0.15s infinite;
  filter: brightness(1);
}

@keyframes float {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

@keyframes flicker {
  0%, 100% { filter: brightness(1); }
  50%     { filter: brightness(1.2); }
}



.contract-box {
  background: #1a2338;
  border-radius: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  margin-bottom: 1.5rem;
}

.contract-box input {
  background: none;
  border: none;
  color: #a8b0d3;
  font-size: 1rem;
  width: 360px;
}

.contract-box button {
  background-color: #f0c060;
  border: none;
  padding: 6px 14px;
  border-radius: 6px;
  cursor: pointer;
  color: #000;
  font-weight: bold;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 2.5rem;
}

.button {
  background: transparent;
  border: 2px solid #f0c060;
  color: #f0c060;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
}

.grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 40px;
  margin-top: 40px;
}
.about {
  text-align: center;
  width: 80%;
}
.grid ul {
  list-style-position: disc inside;  
  padding-left: 0;               
  margin: 0;                     
}

.about p {
  max-width: 600px;     /* limits the paragraph width */
  margin: 0 auto;       /* centers it */
  line-height: 1.6;     /* makes it more readable */
  padding: 0 10px;      /* adds breathing room on small screens */
}



.content-grid h2 {
  color: #f0c060;
}

.content-grid p, .content-grid ul {
  font-size: 1rem;
  color: #f9e4bc;
}

.content-grid ul {
  list-style-type: disc;
  padding-left: 20px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.social-row img {
  width: 40px;
  height: 40px;
}
.how-to-buy-title {
  margin-top: 40px;
  font-size: 1.8rem;
  color: #f0c060;
  text-align: center;
}

.steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 20px;
  margin-bottom: 40px;
}

.step {
  background-color: #1a1f2e;
  padding: 16px;
  border-radius: 10px;
  width: 180px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: floatIn 0.8s ease both;
}
.step:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 8px 20px rgba(240, 192, 96, 0.3);
}

@keyframes floatIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.step {
  animation: floatIn 0.8s ease both;
}

.step img {
  width: 82px;
  height: 82px;
  margin-bottom: 12px;
}

.step h3 {
  font-size: 0.9rem;
  color: #f0c060;
  margin-bottom: 6px;
}

.step p {
  font-size: 0.8rem;
  color: #ffffff;
  line-height: 1.3;
}
main {
  position: relative;
  z-index: 1;
}
.tokenomics-bubbles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 60px;
}

.bubble {
  background-color: #f0c060; /* cream-gold tone */
  color: #000;
  font-weight: bold;
  padding: 16px 32px;
  border-radius: 32px;
  box-shadow: 5px 8px 0 #000;
  font-size: 1rem;
  width: fit-content;
  text-align: center;
  transition: transform 0.2s ease;
}

.bubble:hover {
  transform: scale(1.05);
}
.cool-title {
  font-family: 'Luckiest Guy', cursive;
  font-size: 3rem;
  font-weight: normal;
  color: #f0c060;
  letter-spacing: 1px;
  text-shadow: 2px 2px 6px rgba(255, 200, 100, 0.4), 
               0 0 12px rgba(255, 200, 100, 0.2);
  margin-bottom: 0.5rem;
  animation: titleGlow 2s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    text-shadow: 2px 2px 6px rgba(255, 200, 100, 0.4), 
                 0 0 12px rgba(255, 200, 100, 0.2);
  }
  to {
    text-shadow: 2px 2px 12px rgba(255, 220, 120, 0.6), 
                 0 0 20px rgba(255, 220, 120, 0.4);
  }
}
.site-footer {
  text-align: center;
  color: #a8b0d3;
  font-size: 0.9rem;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: 40px;
}