@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Comic+Neue:wght@700&display=swap');
body {
  margin: 0;
  font-family: 'Luckiest Guy', 'Comic Neue', cursive, sans-serif;
  background: url('img/bg.gif');
  background-size: cover;
  background-repeat: repeat;
  background-attachment: fixed;
  color: #eaeaea;
  font-size: 1.5rem;
}
header {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 32px 16px 16px 16px;
  background: none;
  border-bottom-left-radius: 48px;
  border-bottom-right-radius: 48px;
  box-shadow: none;
}
.logo {
  width: 400px;
  height: 400px;
  border-radius: 32px;
  margin-bottom: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  transition: transform 0.3s cubic-bezier(.36,.07,.19,.97);
}
.logo:hover {
  animation: shake 0.5s;
  animation-iteration-count: 1;
}
@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-10px) rotate(-8deg); }
  40% { transform: translateX(10px) rotate(8deg); }
  60% { transform: translateX(-8px) rotate(-6deg); }
  80% { transform: translateX(8px) rotate(6deg); }
  100% { transform: translateX(0); }
}
h1 {
  font-size: 5rem;
  margin: 0 0 8px 0;
  letter-spacing: 3px;
  color: #f4faff;
  text-shadow: 0 0 16px #b8c1ec, 0 0 32px #fffbe7;
  animation: title-glow 2s infinite alternate;
  font-family: 'Luckiest Guy', cursive, sans-serif;
}
h2, .hero h2, .about h2, .tokenomics h2, .community h2 {
  font-size: 3.2rem;
  margin-bottom: 18px;
  color: #f4faff;
  text-shadow: 0 0 16px #b8c1ec, 0 0 32px #fffbe7;
  animation: wave 2.5s infinite linear;
  font-family: 'Luckiest Guy', cursive, sans-serif;
}
@keyframes title-glow {
  0% { text-shadow: 0 0 8px #ffe066, 0 0 16px #ff6f61; }
  100% { text-shadow: 0 0 24px #ff6f61, 0 0 32px #ffe066; }
}
@keyframes wave {
  0%,100% { transform: translateY(0); }
  20% { transform: translateY(-8px) rotate(-2deg); }
  40% { transform: translateY(6px) rotate(2deg); }
  60% { transform: translateY(-4px) rotate(-1deg); }
  80% { transform: translateY(2px) rotate(1deg); }
}
.symbol {
  font-size: 1.3rem;
  color: #b8c1ec;
  margin-bottom: 16px;
  font-weight: 700;
}
nav {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}
nav a {
  color: #fffbe7;
  background: #393e6b;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 10px 24px;
  border-radius: 24px;
  box-shadow: 0 2px 8px #ffb34744;
  transition: background 0.2s, transform 0.2s;
  border: 2px solid #b8c1ec;
}
nav a:hover {
  background: #fffbe7;
  color: #232946;
  transform: scale(1.08) rotate(-3deg);
}
.section-inner {
  width: 70%;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.section-inner p {
  width: 40%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 1.4em;
}
@media (max-width: 900px) {
  .section-inner {
    width: 95%;
  }
  .section-inner p {
    width: 90%;
  }
}
.hero, .about, .tokenomics, .community {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: 0 8px 32px #23294644;
  border-radius: 48px;
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  padding-left: 0;
  padding-right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero {
  padding: 56px 16px 32px 16px;

  border-radius: 48px;
  margin: 32px 16px 0 16px;
  box-shadow: 0 8px 32px #23294644;
  position: relative;
  overflow: hidden;
}
.hero p {
  font-size: 1.3rem;
  margin-bottom: 28px;
  color: #eaeaea;
  font-size: 1.4em;
}
.hero-img {
  width: 100%;
  max-width: 420px;
  border-radius: 32px;
  box-shadow: 0 8px 32px #ffb34733;
  transition: transform 0.3s cubic-bezier(.36,.07,.19,.97);
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-18px) scale(1.04); }
}
.hero-img:hover {
  animation: shake 0.5s, float 3s ease-in-out infinite;
}
.about {
  padding: 48px 16px;
  text-align: center;
  border-radius: 48px;
  margin: 32px 16px 0 16px;
  box-shadow: 0 8px 32px #23294644;
}
.about p {
  font-size: 1.2rem;
  margin-bottom: 24px;
  color: #eaeaea;
  font-size: 1.4em;
}
.about-img {
  width: 100%;
  max-width: 340px;
  border-radius: 32px;
  box-shadow: 0 4px 24px #ffb34733;
  transition: transform 0.3s cubic-bezier(.36,.07,.19,.97);
  animation: float 3s ease-in-out infinite;
}
.about-img:hover {
  animation: shake 0.5s, float 3s ease-in-out infinite;
}
.tokenomics {
  padding: 48px 16px;
  text-align: center;

  border-radius: 48px;
  margin: 32px 16px 0 16px;
  box-shadow: 0 8px 32px #23294644;
}
.tokenomics ul {
  list-style: none;
  padding: 0;
  font-size: 1.2rem;
}
.tokenomics li {
  margin-bottom: 12px;
  background: #393e6b;
  color: #fffbe7;
  border-radius: 24px;
  padding: 20px;
  font-weight: 700;
  box-shadow: 0 2px 8px #ffb34733;
  border: 2px solid #b8c1ec;
  transition: background 0.2s, color 0.2s;
  font-size: 1.4em;
}
.tokenomics li:hover {
  background: #fffbe7;
  color: #232946;
}
.community {

  padding: 48px 16px;
  text-align: center;
  border-radius: 48px;
  margin: 32px 16px 0 16px;
  box-shadow: 0 8px 32px #23294644;
}
.community p {
  font-size: 1.2rem;
  margin-bottom: 22px;
  color: #eaeaea;
  font-size: 1.4em;
}
.socials {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.socials a img {
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 2px 8px #ffb347);
  background: #232946;
  border-radius: 50%;
  padding: 8px;
  transition: transform 0.2s, filter 0.2s, background 0.2s;
  border: 2px solid #b8c1ec;
}
.socials a:hover img {
  transform: scale(1.18) rotate(-10deg);
  filter: drop-shadow(0 4px 16px #ff6f61);
  background: #fffbe7;
}
footer {
  text-align: center;
  padding: 28px 8px;
  background: none;
  font-size: 1.1rem;
  color: #eaeaea;
  border-top-left-radius: 32px;
  border-top-right-radius: 32px;
  box-shadow: none;
}
@media (max-width: 600px) {
  h1 {
    font-size: 2.1rem;
  }
  .hero h2, .about h2, .tokenomics h2, .community h2 {
    font-size: 1.3rem;
  }
  .logo {
    width: 64px;
    height: 64px;
  }
  .hero-img, .about-img {
    max-width: 90vw;
  }
  nav {
    gap: 12px;
  }
  nav a {
    font-size: 0.95rem;
    padding: 8px 14px;
  }
  .socials a img {
    width: 32px;
    height: 32px;
    padding: 4px;
  }
  .hero, .about, .tokenomics, .community {
    border-radius: 24px;
    margin: 18px 4px 0 4px;
    padding: 24px 4px;
  }
  footer {
    font-size: 0.95rem;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
  }
} 